[Openvas-commits] r6753 - in trunk/openvas-client: . src
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Tue Feb 16 22:12:00 CET 2010
Author: bitshuffler
Date: 2010-02-16 22:11:59 +0100 (Tue, 16 Feb 2010)
New Revision: 6753
Modified:
trunk/openvas-client/ChangeLog
trunk/openvas-client/src/omp-cli.c
Log:
src/omp-cli.c (main): Fix some format not a string literal and no format arguments issue.
Modified: trunk/openvas-client/ChangeLog
===================================================================
--- trunk/openvas-client/ChangeLog 2010-02-16 16:36:26 UTC (rev 6752)
+++ trunk/openvas-client/ChangeLog 2010-02-16 21:11:59 UTC (rev 6753)
@@ -1,3 +1,8 @@
+2010-02-16 Stephan Kleine
+
+ * src/omp-cli.c (main): Fix some "format not a string literal and no
+ format arguments" issue.
+
2010-02-16 Felix Wolfsteller <felix.wolfsteller at intevation.de>
* src/omp-cli.c (main): Added pretty print option (--pretty-print, -i).
Modified: trunk/openvas-client/src/omp-cli.c
===================================================================
--- trunk/openvas-client/src/omp-cli.c 2010-02-16 16:36:26 UTC (rev 6752)
+++ trunk/openvas-client/src/omp-cli.c 2010-02-16 21:11:59 UTC (rev 6753)
@@ -598,7 +598,7 @@
}
}
- printf (id);
+ printf ("%s", id);
putchar ('\n');
manager_close (connection);
More information about the Openvas-commits
mailing list