Browse code

Tidy debug message

git-svn: trunk@1994

Nigel Horne authored on 2006/05/27 23:35:14
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: mbox.c,v 1.305 2006/05/27 14:29:54 njh Exp $";
19
+static	char	const	rcsid[] = "$Id: mbox.c,v 1.306 2006/05/27 14:35:13 njh Exp $";
20 20
 
21 21
 #if HAVE_CONFIG_H
22 22
 #include "clamav-config.h"
... ...
@@ -2263,7 +2263,7 @@ parseEmailBody(message *messageIn, text *textIn, const char *dir, const table_t
2263 2263
 						}
2264 2264
 
2265 2265
 				if(htmltextPart == -1)
2266
-					cli_dbgmsg("No HTML code found to be scanned");
2266
+					cli_dbgmsg("No HTML code found to be scanned\n");
2267 2267
 				else {
2268 2268
 					rc = parseEmailBody(aMessage, aText, dir, rfc821Table, subtypeTable, ctx);
2269 2269
 					if(rc == 1) {
... ...
@@ -2405,7 +2405,7 @@ parseEmailBody(message *messageIn, text *textIn, const char *dir, const table_t
2405 2405
 							/*
2406 2406
 							 * No plain text version
2407 2407
 							 */
2408
-							cli_dbgmsg("No plain text alternative");
2408
+							cli_dbgmsg("No plain text alternative\n");
2409 2409
 						break;
2410 2410
 					case TEXT:
2411 2411
 						dtype = messageGetDispositionType(aMessage);
... ...
@@ -2930,7 +2930,7 @@ parseEmailBody(message *messageIn, text *textIn, const char *dir, const table_t
2930 2930
 				fileblobSetFilename(fb, dir, "bounce");
2931 2931
 				/*fileblobSetCTX(fb, ctx);*/
2932 2932
 				if(textToFileblob(start, fb) == NULL)
2933
-					cli_dbgmsg("Nothing new to save in the bounce message");
2933
+					cli_dbgmsg("Nothing new to save in the bounce message\n");
2934 2934
 				else
2935 2935
 					rc = 1;
2936 2936
 				fileblobDestroy(fb);