diff options
author | Mike Frysinger | 2006-03-23 02:07:20 +0000 |
---|---|---|
committer | Mike Frysinger | 2006-03-23 02:07:20 +0000 |
commit | 948a09d6f288144744ebe281bc18c4bf1a9fac58 (patch) | |
tree | 4a748b7660c089bc78da852352e90ac10a3cf15c /miscutils/mountpoint.c | |
parent | 64bef2ab9ca5c9a19abfef76370b5f0f60e06baf (diff) | |
download | busybox-948a09d6f288144744ebe281bc18c4bf1a9fac58.zip busybox-948a09d6f288144744ebe281bc18c4bf1a9fac58.tar.gz |
dont printf arguments given by user for security sanity
Diffstat (limited to 'miscutils/mountpoint.c')
-rw-r--r-- | miscutils/mountpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/mountpoint.c b/miscutils/mountpoint.c index 38c654c..1248dc0 100644 --- a/miscutils/mountpoint.c +++ b/miscutils/mountpoint.c @@ -64,7 +64,7 @@ int mountpoint_main(int argc, char **argv) } } if (!(opt & OPT_q)) - bb_perror_msg(arg); + bb_perror_msg("%s", arg); return EXIT_FAILURE; } } |