diff options
-rw-r--r-- | src/or/directory.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index b70fa55be..bb38df3ac 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -20,10 +20,14 @@ extern int has_fetched_directory; void directory_initiate_command(routerinfo_t *router, int command) { connection_t *conn; - if (command == DIR_CONN_STATE_CONNECTING_FETCH) - log_fn(LOG_DEBUG,"initiating directory fetch"); - else - log_fn(LOG_DEBUG,"initiating directory upload"); + switch(command) { + case DIR_CONN_STATE_CONNECTING_FETCH: + log_fn(LOG_DEBUG,"initiating directory fetch"); + break; + case DIR_CONN_STATE_CONNECTING_UPLOAD: + log_fn(LOG_DEBUG,"initiating directory upload"); + break; + } if (!router) { /* i guess they didn't have one in mind for me to use */ log_fn(LOG_WARN,"No running dirservers known. Not trying."); |