Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-12-07 19:22:04 +0300
committerMatt Kraai <kraai@debian.org>2000-12-07 19:22:04 +0300
commit7b5c16ebe5f1b057603cf1c0b0187be418725c42 (patch)
treebb5ba755e9719c21cb9cfea6960bf539ae547b5b /sysklogd
parent87afb526b534a962b471e1531702129b54bd5ac4 (diff)
Fix by Tim Robbins <fyre@box3n.gumbynet.org> to prevent bad format
strings from being passed to syslog(3).
Diffstat (limited to 'sysklogd')
-rw-r--r--sysklogd/logger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysklogd/logger.c b/sysklogd/logger.c
index 2c460cc07..8e341efe9 100644
--- a/sysklogd/logger.c
+++ b/sysklogd/logger.c
@@ -156,7 +156,7 @@ extern int logger_main(int argc, char **argv)
}
openlog(name, option, (pri | LOG_FACMASK));
- syslog(pri, message);
+ syslog(pri, "%s", message);
closelog();
return EXIT_SUCCESS;