From b7128c6236ac9b4d5d69ad95d509498f38df0dd6 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 11 Sep 2005 01:05:30 +0000 Subject: Cleanup patch by Bernhard Fischer, removing unnecessary includes of getopt.h, whitespace changes, typos, etc. --- debianutils/readlink.c | 7 ++----- debianutils/start_stop_daemon.c | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) (limited to 'debianutils') diff --git a/debianutils/readlink.c b/debianutils/readlink.c index 90927bb74..dd5612052 100644 --- a/debianutils/readlink.c +++ b/debianutils/readlink.c @@ -43,8 +43,6 @@ int readlink_main(int argc, char **argv) RESERVE_CONFIG_BUFFER(resolved_path, PATH_MAX); #endif - /* no options, no getopt */ - if (optind + 1 != argc) bb_show_usage(); @@ -58,9 +56,8 @@ int readlink_main(int argc, char **argv) if (!buf) return EXIT_FAILURE; puts(buf); -#ifdef CONFIG_FEATURE_CLEAN_UP - free(buf); -#endif + + if (ENABLE_FEATURE_CLEAN_UP) free(buf); return EXIT_SUCCESS; } diff --git a/debianutils/start_stop_daemon.c b/debianutils/start_stop_daemon.c index 4fce80dbb..b1ebe2fa7 100644 --- a/debianutils/start_stop_daemon.c +++ b/debianutils/start_stop_daemon.c @@ -16,7 +16,7 @@ #include #include #include -#include +#include /* struct option */ #include "busybox.h" #include "pwd_.h" -- cgit v1.2.3