From 4b63e0f03d379a35f20262f10b2f6b29d0d81ffc Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 10 Jan 2013 13:14:19 -0500 Subject: [PATCH] Converted a strncmp to a strncasecmp to avoid a compiler issue --- webcit/roomops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.30.2