diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-06-02 12:44:54 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-06-02 12:44:54 +0000 |
commit | 5b6d7f10f3e1748d8437720d001554abddaa0fd9 (patch) | |
tree | 2d3851802716e94af01283e4998babab7a5f427e /src/or/config.c | |
parent | 3431377d86e0891a41ce0882069c16f3f87d2142 (diff) | |
download | tor-5b6d7f10f3e1748d8437720d001554abddaa0fd9.tar.gz tor-5b6d7f10f3e1748d8437720d001554abddaa0fd9.zip |
r13143@catbus: nickm | 2007-06-01 16:43:40 -0400
Try to fix some mipspro compiler warnings. There will still be some left.
svn:r10444
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index 37dcc39312..a68f65ecf3 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -2351,7 +2351,7 @@ parse_authority_type_from_list(smartlist_t *list, authority_type_t *auth, int compatible) { tor_assert(auth); - *auth = 0; + *auth = NO_AUTHORITY; SMARTLIST_FOREACH(list, const char *, string, { if (!strcasecmp(string, "v1")) *auth |= V1_AUTHORITY; |