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:
authorMike Frysinger <vapier@gentoo.org>2006-03-23 05:07:20 +0300
committerMike Frysinger <vapier@gentoo.org>2006-03-23 05:07:20 +0300
commit948a09d6f288144744ebe281bc18c4bf1a9fac58 (patch)
tree4a748b7660c089bc78da852352e90ac10a3cf15c /coreutils/watch.c
parent64bef2ab9ca5c9a19abfef76370b5f0f60e06baf (diff)
dont printf arguments given by user for security sanity
Diffstat (limited to 'coreutils/watch.c')
-rw-r--r--coreutils/watch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/watch.c b/coreutils/watch.c
index 9da591b48..9e0c54c7f 100644
--- a/coreutils/watch.c
+++ b/coreutils/watch.c
@@ -100,7 +100,7 @@ int watch_main(int argc, char **argv)
//child
dup2(old_stdout, STDOUT_FILENO);
execvp(*watched_argv, watched_argv);
- bb_perror_msg_and_die(*watched_argv);
+ bb_perror_msg_and_die("%s", *watched_argv);
} else {
bb_perror_msg_and_die("vfork");
}