From: Art Cancro Date: Thu, 10 Jan 2013 18:14:19 +0000 (-0500) Subject: Converted a strncmp to a strncasecmp to avoid a compiler issue X-Git-Tag: v8.20~133^2 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=4b63e0f03d379a35f20262f10b2f6b29d0d81ffc Converted a strncmp to a strncasecmp to avoid a compiler issue --- diff --git a/webcit/roomops.c b/webcit/roomops.c index 22802ced2..2c4477657 100644 --- a/webcit/roomops.c +++ b/webcit/roomops.c @@ -1142,7 +1142,7 @@ void netedit(void) { if (malias_set_default) { - if (strncmp(ChrPtr(Line), HKEY("roommailalias|")) != 0) + if (strncasecmp(ChrPtr(Line), HKEY("roommailalias|")) != 0) { StrBufAppendBufPlain(Line, HKEY("\n"), 0); StrBufAppendBuf(TmpBuf, Line, 0);