aboutsummaryrefslogtreecommitdiff
path: root/util-linux/fdflush.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2005-09-08 03:11:58 +0000
committerRob Landley <rob@landley.net>2005-09-08 03:11:58 +0000
commit658d2cf98616e377fdcf8cde380fec10d966a689 (patch)
treeded519582e91404e7439409ee62e6abe302f238c /util-linux/fdflush.c
parent02eb934b0f7120cfb783536d6b27f7e092fb991b (diff)
downloadbusybox-658d2cf98616e377fdcf8cde380fec10d966a689.tar.gz
Tito sent in a few patches converting instances of CONFIG_FEATURE_CLEAN_UP to
ENABLE_FEATURE_CLEAN_UP.
Diffstat (limited to 'util-linux/fdflush.c')
-rw-r--r--util-linux/fdflush.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/util-linux/fdflush.c b/util-linux/fdflush.c
index c3fcf3325..f3afea320 100644
--- a/util-linux/fdflush.c
+++ b/util-linux/fdflush.c
@@ -35,15 +35,15 @@ extern int fdflush_main(int argc, char **argv)
{
int fd, result;
- if (argc <= 1)
+ if (argc != 2)
bb_show_usage();
fd = bb_xopen(argv[1], 0);
result = ioctl(fd, FDFLUSH, 0);
-#ifdef CONFIG_FEATURE_CLEAN_UP
- close(fd);
-#endif
+
+ if (ENABLE_FEATURE_CLEAN_UP) close(fd);
+
if (result) {
bb_perror_nomsg_and_die();
}