From 8269396491913ab551b558756f6581a4d12bd00f Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 19 Mar 2001 19:40:43 +0000 Subject: Simpify detection of no options. --- coreutils/rm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/rm.c') diff --git a/coreutils/rm.c b/coreutils/rm.c index a3542aaf6..768e3ca64 100644 --- a/coreutils/rm.c +++ b/coreutils/rm.c @@ -112,7 +112,7 @@ extern int rm_main(int argc, char **argv) } } - if ((argc-optind) < 1 && forceFlag == FALSE) { + if (argc == optind && forceFlag == FALSE) { show_usage(); } #ifdef BB_FEATURE_RM_INTERACTIVE -- cgit v1.2.3