diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-10 15:43:37 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-10 15:43:37 +0000 |
commit | 99912ca733dd960f5589227fd999c86e73c8e894 (patch) | |
tree | 9df947fc08884d498cf76a02204d74b121064134 /coreutils/dd.c | |
parent | ff131b980d524a33d8a43cefe65e14f64a43f2da (diff) | |
download | busybox-w32-99912ca733dd960f5589227fd999c86e73c8e894.tar.gz busybox-w32-99912ca733dd960f5589227fd999c86e73c8e894.tar.bz2 busybox-w32-99912ca733dd960f5589227fd999c86e73c8e894.zip |
audit small applets and mark some of them as NOFORK.
Put big scary warnings in relevant places.
Diffstat (limited to 'coreutils/dd.c')
-rw-r--r-- | coreutils/dd.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c index 4507b5e0c..34a325ea6 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c | |||
@@ -8,8 +8,11 @@ | |||
8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #include "busybox.h" | ||
12 | #include <signal.h> /* For FEATURE_DD_SIGNAL_HANDLING */ | 11 | #include <signal.h> /* For FEATURE_DD_SIGNAL_HANDLING */ |
12 | #include "busybox.h" | ||
13 | |||
14 | /* This is a NOEXEC applet. Be very careful! */ | ||
15 | |||
13 | 16 | ||
14 | static const struct suffix_mult dd_suffixes[] = { | 17 | static const struct suffix_mult dd_suffixes[] = { |
15 | { "c", 1 }, | 18 | { "c", 1 }, |