diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-07-31 20:19:58 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-07-31 20:19:58 +0000 |
commit | 80282d8f55154939b0b64717a66139d569d7087a (patch) | |
tree | 3af1258c3fdf8eb1cd8ebc4f7c5b249090f72f50 /src | |
parent | b9082682fdf00626c4cd3b19c8d6214de9c24dc2 (diff) | |
download | tor-80282d8f55154939b0b64717a66139d569d7087a.tar.gz tor-80282d8f55154939b0b64717a66139d569d7087a.zip |
r6993@Kushana: nickm | 2006-07-31 16:19:21 -0400
Interesting how much a ! can change the behavior of an assert.
svn:r6962
Diffstat (limited to 'src')
-rw-r--r-- | src/common/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
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++; } |