diff options
author | Roger Dingledine <arma@torproject.org> | 2008-03-01 17:47:41 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-03-01 17:47:41 +0000 |
commit | cf3e1b13095cbfcbda3f56f65a88a3ace3e8ad6d (patch) | |
tree | 7d710c0fb76243aa8d246d7d7b3d98cf59ca4acb /src/or | |
parent | 77d1654c50819ce99365ab95da3952099ee5aea8 (diff) | |
download | tor-cf3e1b13095cbfcbda3f56f65a88a3ace3e8ad6d.tar.gz tor-cf3e1b13095cbfcbda3f56f65a88a3ace3e8ad6d.zip |
we should consider dumping the v1 directory stuff from 0.2.1.x.
perhaps we would even replace the v1 directory with a static
page saying 'this is a tor server, let me tell you what that is'.
svn:r13797
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/directory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index 6b2427b258..ebcfc70b43 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -2191,8 +2191,8 @@ directory_handle_command_get(dir_connection_t *conn, const char *headers, cached_dir_t *d = dirserv_get_directory(); if (!d) { - log_notice(LD_DIRSERV,"Client asked for the mirrored directory, but we " - "don't have a good one yet. Sending 503 Dir not available."); + log_info(LD_DIRSERV,"Client asked for the mirrored directory, but we " + "don't have a good one yet. Sending 503 Dir not available."); write_http_status_line(conn, 503, "Directory unavailable"); /* try to get a new one now */ if (!already_fetching_directory(DIR_PURPOSE_FETCH_DIR) && |