From: Nick Mathewson Date: Mon, 31 Jul 2006 20:19:58 +0000 (+0000) Subject: r6993@Kushana: nickm | 2006-07-31 16:19:21 -0400 X-Git-Tag: tor-0.1.2.1-alpha~121 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80282d8f55154939b0b64717a66139d569d7087a;p=thirdparty%2Ftor.git r6993@Kushana: nickm | 2006-07-31 16:19:21 -0400 Interesting how much a ! can change the behavior of an assert. svn:r6962 --- diff --git a/src/common/util.c b/src/common/util.c index 82ebfaf0bf..e5fea55da6 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -343,7 +343,7 @@ int tor_strisnonupper(const char *s) { while (*s) { - if (! TOR_ISUPPER(*s)) + if (TOR_ISUPPER(*s)) return 0; s++; }