Explorar el Código

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 hace 19 años
padre
commit
80282d8f55
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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++;
   }