diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-21 11:09:40 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-21 11:09:40 +0000 |
commit | 5e34ff29bcc870936ab18172f438a34d042d4e03 (patch) | |
tree | a5e7a528f2f916eb883f1161eadceacdf2dca4be /miscutils/eject.c | |
parent | 8b814b4a349e2262c0ad25793b05206a14651ebb (diff) | |
download | busybox-w32-5e34ff29bcc870936ab18172f438a34d042d4e03.tar.gz busybox-w32-5e34ff29bcc870936ab18172f438a34d042d4e03.tar.bz2 busybox-w32-5e34ff29bcc870936ab18172f438a34d042d4e03.zip |
*: mass renaming of USE_XXXX to IF_XXXX
and SKIP_XXXX to IF_NOT_XXXX - the second one was especially
badly named. It was not skipping anything!
Diffstat (limited to 'miscutils/eject.c')
-rw-r--r-- | miscutils/eject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/eject.c b/miscutils/eject.c index ff3976ebb..94a36c0da 100644 --- a/miscutils/eject.c +++ b/miscutils/eject.c | |||
@@ -89,7 +89,7 @@ int eject_main(int argc UNUSED_PARAM, char **argv) | |||
89 | const char *device; | 89 | const char *device; |
90 | 90 | ||
91 | opt_complementary = "?1:t--T:T--t"; | 91 | opt_complementary = "?1:t--T:T--t"; |
92 | flags = getopt32(argv, "tT" USE_FEATURE_EJECT_SCSI("s")); | 92 | flags = getopt32(argv, "tT" IF_FEATURE_EJECT_SCSI("s")); |
93 | device = argv[optind] ? argv[optind] : "/dev/cdrom"; | 93 | device = argv[optind] ? argv[optind] : "/dev/cdrom"; |
94 | 94 | ||
95 | /* We used to do "umount <device>" here, but it was buggy | 95 | /* We used to do "umount <device>" here, but it was buggy |