diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-08-31 17:39:51 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-08-31 17:39:51 +0000 |
commit | f170e5798fd7634a1be2c748464acb2ca485c9a3 (patch) | |
tree | 26153067b5e0ef42fca4ead32813c6b445006d75 /src/common/container.c | |
parent | bc0c39f85de6b55e431c13c85522abd2d2bccf7d (diff) | |
download | tor-f170e5798fd7634a1be2c748464acb2ca485c9a3.tar.gz tor-f170e5798fd7634a1be2c748464acb2ca485c9a3.zip |
r8692@Kushana: nickm | 2006-08-31 13:38:07 -0400
Fix bug 327 (part 2): Cast char to unsigned char before passing to toupper/tolower. (Follow the same idiom as with isupper and friends, in case we run into the same problem on SGI or whereever it was.)
svn:r8310
Diffstat (limited to 'src/common/container.c')
-rw-r--r-- | src/common/container.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/container.c b/src/common/container.c index 34ec1aa5e8..c5529058f3 100644 --- a/src/common/container.c +++ b/src/common/container.c @@ -824,7 +824,7 @@ strmap_remove_lc(strmap_t *map, const char *key) * iter = strmap_iter_next_rmv(iter); * free(val); * } else { - * for (;*cp;cp++) *cp = toupper(*cp); + * for (;*cp;cp++) *cp = TOR_TOUPPER(*cp); * iter = strmap_iter_next(iter); * } * } |