From: Jo-Philipp Wich Date: Wed, 21 Jan 2009 13:50:24 +0000 (+0000) Subject: libs/lucittpd: fix format strings in luaplugin.c and log.c X-Git-Tag: 0.9.0~750 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fc1e5cbe4d1411b56a0f995a9cae9e17e2da3447;p=oweals%2Fluci.git libs/lucittpd: fix format strings in luaplugin.c and log.c --- diff --git a/libs/lucittpd/src/lib/log.c b/libs/lucittpd/src/lib/log.c index b6ce8c28e..001bad473 100644 --- a/libs/lucittpd/src/lib/log.c +++ b/libs/lucittpd/src/lib/log.c @@ -39,7 +39,7 @@ void log_printf(char *fmt, ...) va_end(ap); if(daemonize) - syslog(10, p); + syslog(10, "%s", p); else - printf(p); + printf("%s", p); } diff --git a/libs/lucittpd/src/lib/luaplugin.c b/libs/lucittpd/src/lib/luaplugin.c index 6a0e1caad..0b2e33122 100644 --- a/libs/lucittpd/src/lib/luaplugin.c +++ b/libs/lucittpd/src/lib/luaplugin.c @@ -215,7 +215,7 @@ load_module(struct luaplugin_ctx *ctx, struct luaplugin_entry *e) if (lua_isstring(L, -1)) err = lua_tostring(L, -1); - fprintf(stderr, err); + fprintf(stderr, "%s", err); } } @@ -318,7 +318,7 @@ luaplugin_call(struct luaplugin_entry *e, int narg) ret = lua_pcall(L, narg, 0, 0); if (ret != 0) { - fprintf(stderr, lua_tostring(L, -1)); + fprintf(stderr, "%s", lua_tostring(L, -1)); } done: