Browse code

Fix small typo

git-svn: trunk@1121

Nigel Horne authored on 2004/11/26 21:04:22
Showing 1 changed files
... ...
@@ -17,6 +17,9 @@
17 17
  *
18 18
  * Change History:
19 19
  * $Log: message.c,v $
20
+ * Revision 1.120  2004/11/26 12:04:22  nigelhorne
21
+ * Fix small typo
22
+ *
20 23
  * Revision 1.119  2004/11/22 15:18:51  nigelhorne
21 24
  * Performance work
22 25
  *
... ...
@@ -354,7 +357,7 @@
354 354
  * uuencodebegin() no longer static
355 355
  *
356 356
  */
357
-static	char	const	rcsid[] = "$Id: message.c,v 1.119 2004/11/22 15:18:51 nigelhorne Exp $";
357
+static	char	const	rcsid[] = "$Id: message.c,v 1.120 2004/11/26 12:04:22 nigelhorne Exp $";
358 358
 
359 359
 #if HAVE_CONFIG_H
360 360
 #include "clamav-config.h"
... ...
@@ -1236,7 +1239,7 @@ messageIsEncoding(message *m)
1236 1236
 			 * header which would generate umpteen false bounce
1237 1237
 			 * matches
1238 1238
 			 */
1239
-		(strncasecmp(line, "Received: ", 10) == NULL) &&
1239
+		(strncasecmp(line, "Received: ", 10) == 0) &&
1240 1240
 		(cli_filetype(line, strlen(line)) == CL_TYPE_MAIL))
1241 1241
 			m->bounce = m->body_last;
1242 1242
 	else if((m->uuencode == NULL) &&