]> granicus.if.org Git - neomutt/commitdiff
Fix the ascii_strncmp() macro.
authorThomas Roessler <roessler@does-not-exist.org>
Sun, 13 Jan 2002 21:19:25 +0000 (21:19 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Sun, 13 Jan 2002 21:19:25 +0000 (21:19 +0000)
ascii.h

diff --git a/ascii.h b/ascii.h
index 2041c6b3064100a3feb6bc2860d24e042bf84cc3..a6c1d2c379701fe2ca44107d15915f7d0a5abc84 100644 (file)
--- a/ascii.h
+++ b/ascii.h
@@ -37,6 +37,6 @@ int ascii_strcasecmp (const char *a, const char *b);
 int ascii_strncasecmp (const char *a, const char *b, int n);
 
 #define ascii_strcmp(a,b) mutt_strcmp(a,b)
-#define ascii_strncmp(a,b) mutt_strncmp(a,b)
+#define ascii_strncmp(a,b,c) mutt_strncmp(a,b,c)
 
 #endif