From: Nick Mathewson Date: Sun, 18 Jun 2006 07:57:47 +0000 (+0000) Subject: add coverage for a default case X-Git-Tag: tor-0.1.1.23~201 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c58cc8c16c14ab789cb8afd9e292986c242daf1b;p=thirdparty%2Ftor.git add coverage for a default case svn:r6643 --- diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 959161349d..e80c8300b9 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -1847,6 +1847,8 @@ connection_dirserv_flushed_some(connection_t *conn) return connection_dirserv_add_servers_to_outbuf(conn); case DIR_REFRESH_CACHED_DIR: return connection_dirserv_add_dir_bytes_to_outbuf(conn); + default: + return 0; } }