[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] Ensure case match, not mismatch.
Update of /home/or/cvsroot/tor/src/or
In directory moria:/tmp/cvs-serv6184/src/or
Modified Files:
dirserv.c
Log Message:
Ensure case match, not mismatch.
Index: dirserv.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/or/dirserv.c,v
retrieving revision 1.211
retrieving revision 1.212
diff -u -d -r1.211 -r1.212
--- dirserv.c 8 Sep 2005 18:14:23 -0000 1.211
+++ dirserv.c 8 Sep 2005 18:34:41 -0000 1.212
@@ -1188,7 +1188,7 @@
SMARTLIST_FOREACH(hexdigests, char *, cp,
{
cached_dir_t *cached;
- tor_strlower(cp);
+ tor_strupper(cp);
/* XXXX special-case own key? */
cached = strmap_get(cached_v2_networkstatus, cp);
if (cached)