Selaa lähdekoodia

r6993@Kushana: nickm | 2006-07-31 16:19:21 -0400
Interesting how much a ! can change the behavior of an assert.


svn:r6962

Nick Mathewson 19 vuotta sitten
vanhempi
commit
80282d8f55
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/common/util.c

+ 1 - 1
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++;
   }