diff options
author | rl1987 <rl1987@sdf.lonestar.org> | 2018-05-10 16:33:08 +0300 |
---|---|---|
committer | rl1987 <rl1987@sdf.lonestar.org> | 2018-05-10 16:33:08 +0300 |
commit | 8ad97b7dcf143fc488422f9866613fea3d900119 (patch) | |
tree | a020a6c974570326927704de6dff3725a5e17e89 /src/or/router.h | |
parent | 36f7d0a940bbe8695d5343fccc1a0560a529883a (diff) | |
download | tor-8ad97b7dcf143fc488422f9866613fea3d900119.tar.gz tor-8ad97b7dcf143fc488422f9866613fea3d900119.zip |
Avoid confusion with errno from libc
Diffstat (limited to 'src/or/router.h')
-rw-r--r-- | src/or/router.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/router.h b/src/or/router.h index 561802c2cd..9befffae59 100644 --- a/src/or/router.h +++ b/src/or/router.h @@ -135,7 +135,7 @@ const char *node_describe(const node_t *node); const char *routerstatus_describe(const routerstatus_t *ri); const char *extend_info_describe(const extend_info_t *ei); -const char *routerinfo_errno_to_string(int err); +const char *routerinfo_err_to_string(int err); int routerinfo_err_is_transient(int err); void router_get_verbose_nickname(char *buf, const routerinfo_t *router); |