diff options
Diffstat (limited to 'libbb/mtab.c')
-rw-r--r-- | libbb/mtab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/mtab.c b/libbb/mtab.c index 131705d..aa1a2a1 100644 --- a/libbb/mtab.c +++ b/libbb/mtab.c @@ -21,7 +21,7 @@ void FAST_FUNC erase_mtab(const char *name) /* Bummer. Fall back on trying the /proc filesystem */ if (!mountTable) mountTable = setmntent("/proc/mounts", "r"); if (!mountTable) { - bb_perror_msg(bb_path_mtab_file); + bb_simple_perror_msg(bb_path_mtab_file); return; } @@ -49,6 +49,6 @@ void FAST_FUNC erase_mtab(const char *name) } endmntent(mountTable); } else if (errno != EROFS) - bb_perror_msg(bb_path_mtab_file); + bb_simple_perror_msg(bb_path_mtab_file); } #endif |