r6993@Kushana: nickm | 2006-07-31 16:19:21 -0400

Interesting how much a ! can change the behavior of an assert.


svn:r6962
This commit is contained in:
Nick Mathewson 2006-07-31 20:19:58 +00:00
parent b9082682fd
commit 80282d8f55

View file

@ -343,7 +343,7 @@ int
tor_strisnonupper(const char *s)
{
while (*s) {
if (! TOR_ISUPPER(*s))
if (TOR_ISUPPER(*s))
return 0;
s++;
}