Use xopen instead of xfopen
authorGlenn L McGrath <bug1@ihug.co.nz>
Thu, 8 May 2003 13:09:28 +0000 (13:09 -0000)
committerGlenn L McGrath <bug1@ihug.co.nz>
Thu, 8 May 2003 13:09:28 +0000 (13:09 -0000)
util-linux/freeramdisk.c

index 9276a6c403df94ef3a2c0055899a8619b70cb4e7..00dc00841835151724287388d68f5c1ac4c22262 100644 (file)
@@ -26,7 +26,6 @@
 #include <sys/types.h>
 #include <fcntl.h>
 #include <sys/ioctl.h>
-#include <errno.h>
 #include <stdlib.h>
 #include "busybox.h"
 
@@ -38,17 +37,17 @@ extern int
 freeramdisk_main(int argc, char **argv)
 {
        int result;
-       FILE *f;
+       int fd;
 
        if (argc != 2) {
                bb_show_usage();
        }
 
-       f = bb_xfopen(argv[1], "r+");
+       fd = bb_xopen(argv[1], O_RDWR);
        
-       result = ioctl(fileno(f), BLKFLSBUF);
+       result = ioctl(fd, BLKFLSBUF);
 #ifdef CONFIG_FEATURE_CLEAN_UP
-       fclose(f);
+       close(fd);
 #endif
        if (result < 0) {
                bb_perror_msg_and_die("failed ioctl on %s", argv[1]);