diff options
Diffstat (limited to 'util-linux/mount.c')
-rw-r--r-- | util-linux/mount.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index b571e5035..79813ba18 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -232,13 +232,9 @@ mount_one(char *blockDevice, char *directory, char *filesystemType, { int status = 0; -#if defined BB_FEATURE_USE_PROCFS char buf[255]; if (strcmp(filesystemType, "auto") == 0) { - FILE *f = fopen("/proc/filesystems", "r"); - - if (f == NULL) - return (FALSE); + FILE *f = xfopen("/proc/filesystems", "r"); while (fgets(buf, sizeof(buf), f) != NULL) { filesystemType = buf; @@ -261,7 +257,6 @@ mount_one(char *blockDevice, char *directory, char *filesystemType, } fclose(f); } else -#endif #if defined BB_FEATURE_USE_DEVPS_PATCH if (strcmp(filesystemType, "auto") == 0) { int fd, i, numfilesystems; |