extra points for making the function name reflect what it does

svn:r10608
This commit is contained in:
Roger Dingledine 2007-06-15 04:23:36 +00:00
parent 73f7310d9b
commit 6a2f045163
3 changed files with 3 additions and 3 deletions

View File

@ -1804,7 +1804,7 @@ directory_handle_command_get(dir_connection_t *conn, const char *headers,
smartlist_free(dir_fps); smartlist_free(dir_fps);
return 0; return 0;
} }
if (dirserv_statuses_are_old(dir_fps, if_modified_since)) { if (dirserv_remove_old_statuses(dir_fps, if_modified_since)) {
write_http_status_line(conn, 304, "Not modified"); write_http_status_line(conn, 304, "Not modified");
/* no need to free dir_fps's elements, since /* no need to free dir_fps's elements, since
* dirserv_statuses_are_old() already did. */ * dirserv_statuses_are_old() already did. */

View File

@ -2545,7 +2545,7 @@ dirserv_test_reachability(int try_all)
* Return 1 if no keys remain, else return 0. * Return 1 if no keys remain, else return 0.
*/ */
int int
dirserv_statuses_are_old(smartlist_t *fps, time_t cutoff) dirserv_remove_old_statuses(smartlist_t *fps, time_t cutoff)
{ {
SMARTLIST_FOREACH(fps, char *, digest, SMARTLIST_FOREACH(fps, char *, digest,
{ {

View File

@ -2739,7 +2739,7 @@ void dirserv_test_reachability(int try_all);
int authdir_wants_to_reject_router(routerinfo_t *ri, const char **msg, int authdir_wants_to_reject_router(routerinfo_t *ri, const char **msg,
int complain); int complain);
int dirserv_would_reject_router(routerstatus_t *rs); int dirserv_would_reject_router(routerstatus_t *rs);
int dirserv_statuses_are_old(smartlist_t *fps, time_t cutoff); int dirserv_remove_old_statuses(smartlist_t *fps, time_t cutoff);
size_t dirserv_estimate_data_size(smartlist_t *fps, int is_serverdescs, size_t dirserv_estimate_data_size(smartlist_t *fps, int is_serverdescs,
int compressed); int compressed);
int routerstatus_format_entry(char *buf, size_t buf_len, int routerstatus_format_entry(char *buf, size_t buf_len,