Browse code

Error message fixed

git-svn-id: file:///var/lib/svn/clamav-devel/trunk/clamav-devel@101 77e5149b-7576-45b1-b177-96237e5ba77b

Tomasz Kojm authored on 2003/11/06 06:35:20
Showing 2 changed files
... ...
@@ -1,3 +1,7 @@
1
+Wed Nov  5 22:31:26 CET 2003 (tk)
2
+---------------------------------
3
+  * clamd: cl_scanfile() error message fixed (thanks to Ed Phillips)
4
+
1 5
 Wed Nov  5 15:43:15 GMT 2003 (njh)
2 6
 ----------------------------------
3 7
   * clamav-milter: tidied up the calls to pthread_cond_timedwait
... ...
@@ -13,7 +17,7 @@ Wed Nov  5 12:34:34 IST 2003 (njh)
13 13
 
14 14
 Wed Nov  5 01:52:03 CET 2003 (tk)
15 15
 ---------------------------------
16
-  * libclamav: zziplib: few files converted to UNIX format (thanks to
16
+  * libclamav: zziplib: a few files converted to UNIX format (thanks to
17 17
 	       Ed Phillips)
18 18
 
19 19
 Tue Nov  4 13:37:21 CET 2003 (tk)
... ...
@@ -99,8 +99,8 @@ int dirscan(const char *dirname, char **virname, unsigned long int *scanned, con
99 99
 				    } else
100 100
 					ret = 2;
101 101
 				} else if(scanret != CL_CLEAN) {
102
-				    mdprintf(odesc, "%s: %s\n", fname, cl_strerror(scanret));
103
-				    logg("*%s: %s\n", fname, cl_strerror(scanret));
102
+				    mdprintf(odesc, "%s: %s ERROR\n", fname, cl_strerror(scanret));
103
+				    logg("*%s: %s\n ERROR", fname, cl_strerror(scanret));
104 104
 				}
105 105
 		    }
106 106