From aad356a49d6b00590b21751ea560c54f321c73c9 Mon Sep 17 00:00:00 2001 From: Christian Hammers Date: Wed, 23 Mar 2011 13:07:55 +0300 Subject: lib: fix more format warnings (#637) The following patch was also neccessary to compile. * command.c: (config_logmsg_cmd) use "%s" format spec * if.c: (connected_log) ditto --- lib/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/command.c') diff --git a/lib/command.c b/lib/command.c index 45eb9e31..ebb50b40 100644 --- a/lib/command.c +++ b/lib/command.c @@ -3054,7 +3054,7 @@ DEFUN (config_logmsg, if ((level = level_match(argv[0])) == ZLOG_DISABLED) return CMD_ERR_NO_MATCH; - zlog(NULL, level, ((message = argv_concat(argv, argc, 1)) ? message : "")); + zlog(NULL, level, "%s", ((message = argv_concat(argv, argc, 1)) ? message : "")); if (message) XFREE(MTYPE_TMP, message); return CMD_SUCCESS; -- cgit v1.2.1