diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2015-01-17 20:00:49 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2015-01-17 20:00:49 +0000 |
commit | 1065dd4f38c81c83934ba51526471072837700ae (patch) | |
tree | 42ea01f5040065df60917daca6605318ec4f28df /protocols/oscar/oscar_util.c | |
parent | bc7a0d46e36a819755ca3f2b38194fb11eca0dd9 (diff) | |
parent | 6b13103dad92d505e038c268af66aeb04b7b4d87 (diff) |
Merge cleanup changes. (FSF address fix, and using GLib variants of some
functions which cleans up compiler warnings.)
Diffstat (limited to 'protocols/oscar/oscar_util.c')
-rw-r--r-- | protocols/oscar/oscar_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/oscar/oscar_util.c b/protocols/oscar/oscar_util.c index 7d41d383..806632ff 100644 --- a/protocols/oscar/oscar_util.c +++ b/protocols/oscar/oscar_util.c @@ -56,7 +56,7 @@ int aim_sncmp(const char *sn1, const char *sn2) if (*curPtr2 == ' ') curPtr2++; } else { - if ( toupper(*curPtr1) != toupper(*curPtr2)) + if ( g_ascii_toupper(*curPtr1) != g_ascii_toupper(*curPtr2)) return 1; curPtr1++; curPtr2++; |