diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-03-16 18:07:55 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-03-16 18:07:55 -0400 |
commit | 721954b3a2a55e82160815f4c133e7da66712542 (patch) | |
tree | 1073b1980e8cb39c39a25a59f9271693c0a04603 /src | |
parent | 8f9cfa0abe3793e120ee25a0f339bcee4d3fa4db (diff) | |
download | tor-721954b3a2a55e82160815f4c133e7da66712542.tar.gz tor-721954b3a2a55e82160815f4c133e7da66712542.zip |
Resolve the one DOCDOC in the 0.2.2 code atm
Diffstat (limited to 'src')
-rw-r--r-- | src/common/compat_libevent.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/compat_libevent.c b/src/common/compat_libevent.c index 0e5a906b74..3efc56d8d8 100644 --- a/src/common/compat_libevent.c +++ b/src/common/compat_libevent.c @@ -228,9 +228,9 @@ tor_libevent_get_method(void) #endif } -/** Return the le_version_t for the current version of libevent. If the - * version is very new, return LE_OTHER. If the version is so old that it - * doesn't support event_get_version(), return LE_OLD. DOCDOC */ +/** Return the le_version_t for the version of libevent specified in the + * string <b>v</b>. If the version is very new or uses an unrecognized + * version, format, return LE_OTHER. */ static le_version_t tor_decode_libevent_version(const char *v) { @@ -280,7 +280,7 @@ le_versions_compatibility(le_version_t v) } /** Return the version number of the currently running version of Libevent. - See le_version_t for info on the format. + * See le_version_t for info on the format. */ static le_version_t tor_get_libevent_version(const char **v_out) |