[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r11853: Fix compilation on last patch. (in tor/trunk: . src/or)
Author: nickm
Date: 2007-10-10 16:29:52 -0400 (Wed, 10 Oct 2007)
New Revision: 11853
Modified:
tor/trunk/
tor/trunk/src/or/directory.c
Log:
r15660@catbus: nickm | 2007-10-10 16:25:09 -0400
Fix compilation on last patch.
Property changes on: tor/trunk
___________________________________________________________________
svk:merge ticket from /tor/trunk [r15660] on 8246c3cf-6607-4228-993b-4d95d33730f1
Modified: tor/trunk/src/or/directory.c
===================================================================
--- tor/trunk/src/or/directory.c 2007-10-10 20:28:01 UTC (rev 11852)
+++ tor/trunk/src/or/directory.c 2007-10-10 20:29:52 UTC (rev 11853)
@@ -2369,10 +2369,10 @@
goto keys_done;
}
SMARTLIST_FOREACH(certs, authority_cert_t *, c,
- if (cert->cache_info.published_on < if_modified_since)
+ if (c->cache_info.published_on < if_modified_since)
SMARTLIST_DEL_CURRENT(certs, c));
if (!smartlist_len(certs)) {
- write_status_line(conn, 304, "Not modified");
+ write_http_status_line(conn, 304, "Not modified");
goto keys_done;
}
len = 0;