Browse code

Fix typo

git-svn: trunk@2314

Nigel Horne authored on 2006/09/27 19:30:27
Showing 1 changed files
... ...
@@ -16,7 +16,7 @@
16 16
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17 17
  *  MA 02110-1301, USA.
18 18
  */
19
-static	char	const	rcsid[] = "$Id: blob.c,v 1.54 2006/09/20 10:22:07 njh Exp $";
19
+static	char	const	rcsid[] = "$Id: blob.c,v 1.55 2006/09/27 10:30:27 njh Exp $";
20 20
 
21 21
 #if HAVE_CONFIG_H
22 22
 #include "clamav-config.h"
... ...
@@ -543,7 +543,7 @@ sanitiseName(char *name)
543 543
 		*name &= '\177';
544 544
 #endif
545 545
 		/* Also check for tab - "Heinz Martin" <Martin@hemag.ch> */
546
-#if	defined(MSDOS) || defined(C_CYGWIN) || defined(WIN32) || defined(C_OS2)
546
+#if	defined(MSDOS) || defined(C_CYGWIN) || defined(C_WINDOWS) || defined(C_OS2)
547 547
 		if(strchr("%/*?<>|\\\"+=,;:\t ", *name))
548 548
 #else
549 549
 		if(*name == '/')