aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libtokencap/libtokencap.so.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtokencap/libtokencap.so.c b/libtokencap/libtokencap.so.c
index 1bffd2fa..d400d3b3 100644
--- a/libtokencap/libtokencap.so.c
+++ b/libtokencap/libtokencap.so.c
@@ -330,8 +330,8 @@ int strncmp(const char* str1, const char* str2, size_t len) {
unsigned char c1 = *str1, c2 = *str2;
- if (!c1) return 0;
if (c1 != c2) return (c1 > c2) ? 1 : -1;
+ if (!c1) return 0;
str1++;
str2++;