aboutsummaryrefslogtreecommitdiff
path: root/coreutils/rm.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-03-19 18:59:01 +0000
committerEric Andersen <andersen@codepoet.org>2001-03-19 18:59:01 +0000
commitcc165b9083e8e4fb01992a8e0d97ecf08cb6dcdd (patch)
treee02b269a110f0dd3f723f28bb31063748cfef0e7 /coreutils/rm.c
parent00b0496e6976462a4daa4e245ce863f126789eee (diff)
downloadbusybox-w32-cc165b9083e8e4fb01992a8e0d97ecf08cb6dcdd.tar.gz
busybox-w32-cc165b9083e8e4fb01992a8e0d97ecf08cb6dcdd.tar.bz2
busybox-w32-cc165b9083e8e4fb01992a8e0d97ecf08cb6dcdd.zip
Should exclude "i" option when not enabled.
Diffstat (limited to 'coreutils/rm.c')
-rw-r--r--coreutils/rm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/rm.c b/coreutils/rm.c
index a5b2ef420..a3542aaf6 100644
--- a/coreutils/rm.c
+++ b/coreutils/rm.c
@@ -102,8 +102,8 @@ extern int rm_main(int argc, char **argv)
102 case 'f': 102 case 'f':
103 forceFlag = TRUE; 103 forceFlag = TRUE;
104 break; 104 break;
105 case 'i':
106#ifdef BB_FEATURE_RM_INTERACTIVE 105#ifdef BB_FEATURE_RM_INTERACTIVE
106 case 'i':
107 interactiveFlag = TRUE; 107 interactiveFlag = TRUE;
108#endif 108#endif
109 break; 109 break;