]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
r6993@Kushana: nickm | 2006-07-31 16:19:21 -0400
authorNick Mathewson <nickm@torproject.org>
Mon, 31 Jul 2006 20:19:58 +0000 (20:19 +0000)
committerNick Mathewson <nickm@torproject.org>
Mon, 31 Jul 2006 20:19:58 +0000 (20:19 +0000)
 Interesting how much a ! can change the behavior of an assert.

svn:r6962

src/common/util.c

index 82ebfaf0bf98e20f92a136f284c5b13b1346c94d..e5fea55da6f4faa428305857df78063f409d0e33 100644 (file)
@@ -343,7 +343,7 @@ int
 tor_strisnonupper(const char *s)
 {
   while (*s) {
-    if (TOR_ISUPPER(*s))
+    if (TOR_ISUPPER(*s))
       return 0;
     s++;
   }