Browse code

add missing argument for format string

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

Tomasz Kojm authored on 2005/03/04 10:47:08
Showing 2 changed files
... ...
@@ -1,3 +1,8 @@
1
+Fri Mar  4 02:42:43 CET 2005 (tk)
2
+---------------------------------
3
+  * freshclam/freshclam.c: add missing argument for format string. Patch by
4
+			 Enrico Scholz <enrico.scholz*informatik.tu-chemnitz.de>
5
+
1 6
 Fri Mar  4 02:21:42 CET 2005 (tk)
2 7
 ---------------------------------
3 8
   * clamd/others.c: include <sys/param.h> to fix compilation error on FreeBSD
... ...
@@ -122,7 +122,7 @@ int freshclam(struct optstruct *opt)
122 122
 
123 123
     if(cfgopt(copt, "HTTPProxyPassword")) {
124 124
 	if(stat(cfgfile, &statbuf) == -1) {
125
-	    mprintf("@Can't stat %s (critical error)\n");
125
+	    mprintf("@Can't stat %s (critical error)\n", cfgfile);
126 126
 	    return 56;
127 127
 	}
128 128
 #ifndef C_CYGWIN