[NeoStats-Devel] [Commits] r2723 - trunk/modules/statserv

[email protected] Sun, 14 Aug 2005 05:24:22 +1000
Newsgroups gmane.comp.neostats.devel
Message-ID <[email protected]>
Author: Mark
Date: Sun Aug 14 03:24:14 2005
New Revision: 2723

Modified:
   trunk/modules/statserv/htmlstats.c
Log:
remove non-portable call to strcasestr

Modified: trunk/modules/statserv/htmlstats.c
==============================================================================
--- trunk/modules/statserv/htmlstats.c	(original)
+++ trunk/modules/statserv/htmlstats.c	Sun Aug 14 03:24:14 2005
@@ -469,7 +469,7 @@
 			}		
 			htmlfuncptr++;
 		}
-		buftemp = strcasestr( bufptr, "</html>" );
+		buftemp = strstr( bufptr, "</html>" );
 		if( buftemp ) {
 			os_fwrite( bufptr,( int )buftemp -( int )bufptr, 1, opf );
 			put_copyright();