Now that we have xopen3(), it's just plain unclean to have xopen() with
[oweals/busybox.git] / miscutils / eject.c
index d4548628d7d4907b39b0910cc527d7770a87d667..282090d38e9c6399ce5b0ceeba85395436674afa 100644 (file)
@@ -1,3 +1,4 @@
+/* vi: set sw=4 ts=4: */
 /*
  * eject implementation for busybox
  *
@@ -5,7 +6,6 @@
  * Copyright (C) 2005  Tito Ragusa <farmatito@tiscali.it>
  *
  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
- *
  */
 
 /*
  * Most of the dirty work blatantly ripped off from cat.c =)
  */
 
-#include <fcntl.h>
-#include <sys/ioctl.h>
-#include <unistd.h>
-#include <sys/mount.h>
-#include <mntent.h>
 #include "busybox.h"
+#include <mntent.h>
 
 /* various defines swiped from linux/cdrom.h */
 #define CDROMCLOSETRAY            0x5319  /* pendant of CDROMEJECT  */
@@ -41,7 +37,7 @@ int eject_main(int argc, char **argv)
                        erase_mtab(m->mnt_fsname);
                }
        }
-       if (ioctl(bb_xopen(device, (O_RDONLY | O_NONBLOCK)),
+       if (ioctl(xopen(device, (O_RDONLY | O_NONBLOCK)),
                                (flags ? CDROMCLOSETRAY : CDROMEJECT))) {
                bb_perror_msg_and_die("%s", device);
        }