diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-19 18:57:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-19 18:57:08 +0000 |
commit | 00b0496e6976462a4daa4e245ce863f126789eee (patch) | |
tree | f849839b27ef33f710e74b61e57d6fb6b5c07fcf /coreutils | |
parent | 16f7015722fe62e9b89cad24435ed285f7d71cd9 (diff) | |
download | busybox-00b0496e6976462a4daa4e245ce863f126789eee.tar.gz |
Doesn't need a "-" option -- getopt does that for us.
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/rm.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/coreutils/rm.c b/coreutils/rm.c index 013f3ee5d..a5b2ef420 100644 --- a/coreutils/rm.c +++ b/coreutils/rm.c @@ -85,7 +85,6 @@ extern int rm_main(int argc, char **argv) { int opt; int status = EXIT_SUCCESS; - int stopIt=FALSE; struct stat statbuf; @@ -108,9 +107,6 @@ extern int rm_main(int argc, char **argv) interactiveFlag = TRUE; #endif break; - case '-': - stopIt = TRUE; - break; default: show_usage(); } |