diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-19 18:59:01 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-19 18:59:01 +0000 |
commit | cc165b9083e8e4fb01992a8e0d97ecf08cb6dcdd (patch) | |
tree | e02b269a110f0dd3f723f28bb31063748cfef0e7 /coreutils/rm.c | |
parent | 00b0496e6976462a4daa4e245ce863f126789eee (diff) | |
download | busybox-cc165b9083e8e4fb01992a8e0d97ecf08cb6dcdd.tar.gz |
Should exclude "i" option when not enabled.
Diffstat (limited to 'coreutils/rm.c')
-rw-r--r-- | coreutils/rm.c | 2 |
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) case 'f': forceFlag = TRUE; break; - case 'i': #ifdef BB_FEATURE_RM_INTERACTIVE + case 'i': interactiveFlag = TRUE; #endif break; |