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

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

Modified:
   trunk/modules/statserv/htmlstats.c
Log:
Do **NOT** use + with bitmasks, use \|

Modified: trunk/modules/statserv/htmlstats.c
==============================================================================
--- trunk/modules/statserv/htmlstats.c	(original)
+++ trunk/modules/statserv/htmlstats.c	Sun Aug 14 03:28:28 2005
@@ -483,7 +483,7 @@
 	os_fclose( opf );
 #ifndef WIN32
     /* update the umode so others can read it and owner can overwrite it */
-    chmod(StatServ.htmlpath, S_IRUSR+S_IWUSR|S_IRGRP|S_IROTH);
+    chmod(StatServ.htmlpath, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
 #endif /* WIN32 */