summaryrefslogtreecommitdiff
path: root/coreutils/rm.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-03-19 18:57:08 +0000
committerEric Andersen <andersen@codepoet.org>2001-03-19 18:57:08 +0000
commit00b0496e6976462a4daa4e245ce863f126789eee (patch)
treef849839b27ef33f710e74b61e57d6fb6b5c07fcf /coreutils/rm.c
parent16f7015722fe62e9b89cad24435ed285f7d71cd9 (diff)
downloadbusybox-w32-00b0496e6976462a4daa4e245ce863f126789eee.tar.gz
busybox-w32-00b0496e6976462a4daa4e245ce863f126789eee.tar.bz2
busybox-w32-00b0496e6976462a4daa4e245ce863f126789eee.zip
Doesn't need a "-" option -- getopt does that for us.
Diffstat (limited to 'coreutils/rm.c')
-rw-r--r--coreutils/rm.c4
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)
85{ 85{
86 int opt; 86 int opt;
87 int status = EXIT_SUCCESS; 87 int status = EXIT_SUCCESS;
88 int stopIt=FALSE;
89 struct stat statbuf; 88 struct stat statbuf;
90 89
91 90
@@ -108,9 +107,6 @@ extern int rm_main(int argc, char **argv)
108 interactiveFlag = TRUE; 107 interactiveFlag = TRUE;
109#endif 108#endif
110 break; 109 break;
111 case '-':
112 stopIt = TRUE;
113 break;
114 default: 110 default:
115 show_usage(); 111 show_usage();
116 } 112 }