From 99912ca733dd960f5589227fd999c86e73c8e894 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 10 Apr 2007 15:43:37 +0000 Subject: audit small applets and mark some of them as NOFORK. Put big scary warnings in relevant places. --- util-linux/hexdump.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'util-linux/hexdump.c') diff --git a/util-linux/hexdump.c b/util-linux/hexdump.c index cddd185e2..85a449038 100644 --- a/util-linux/hexdump.c +++ b/util-linux/hexdump.c @@ -9,10 +9,13 @@ * Licensed under GPLv2 or later, see file License in this tarball for details. */ -#include "busybox.h" #include +#include "busybox.h" #include "dump.h" +/* This is a NOEXEC applet. Be very careful! */ + + static void bb_dump_addfile(char *name) { char *p; @@ -45,10 +48,10 @@ static const char add_first[] = "\"%07.7_Ax\n\""; static const char hexdump_opts[] = "bcdoxCe:f:n:s:v"; static const struct suffix_mult suffixes[] = { - {"b", 512 }, - {"k", 1024 }, - {"m", 1024*1024 }, - {NULL, 0 } + { "b", 512 }, + { "k", 1024 }, + { "m", 1024*1024 }, + { NULL, 0 } }; int hexdump_main(int argc, char **argv); -- cgit v1.2.3