summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hammers <ch@debian.org>2011-03-23 13:07:55 +0300
committerDenis Ovsienko <infrastation@yandex.ru>2011-03-23 13:07:55 +0300
commitfc95186c30884c96543aecfc56cfe5b08774525b (patch)
tree370b07b428152c8979b081b1a9267755b6df42be
parent98e30f5db6dea65a5d6a176065cd0b60eb7bb001 (diff)
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
-rw-r--r--lib/command.c2
-rw-r--r--lib/if.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/command.c b/lib/command.c
index 5a13f39c..264e0f7b 100644
--- a/lib/command.c
+++ b/lib/command.c
@@ -3056,7 +3056,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;
diff --git a/lib/if.c b/lib/if.c
index b61bdbff..86f754b6 100644
--- a/lib/if.c
+++ b/lib/if.c
@@ -664,7 +664,7 @@ connected_log (struct connected *connected, char *str)
strncat (logbuf, inet_ntop (p->family, &p->u.prefix, buf, BUFSIZ),
BUFSIZ - strlen(logbuf));
}
- zlog (NULL, LOG_INFO, logbuf);
+ zlog (NULL, LOG_INFO, "%s", logbuf);
}
/* If two connected address has same prefix return 1. */