diff options
Diffstat (limited to 'plugins/MirOTR/libgcrypt-1.4.6/src/missing-string.c')
-rw-r--r-- | plugins/MirOTR/libgcrypt-1.4.6/src/missing-string.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MirOTR/libgcrypt-1.4.6/src/missing-string.c b/plugins/MirOTR/libgcrypt-1.4.6/src/missing-string.c index c5f4c83f70..a5e56c3f76 100644 --- a/plugins/MirOTR/libgcrypt-1.4.6/src/missing-string.c +++ b/plugins/MirOTR/libgcrypt-1.4.6/src/missing-string.c @@ -45,8 +45,8 @@ stpcpy(char *a,const char *b) int strcasecmp( const char *a, const char *b ) { - for ( ; *a && *b; a++, b++ ) { - if ( *a != *b && toupper(*a) != toupper(*b) ) + for( ; *a && *b; a++, b++ ) { + if( *a != *b && toupper(*a) != toupper(*b) ) break; } return *(const byte*)a - *(const byte*)b; |