diff options
author | Mark Whitley | 2000-12-07 19:56:48 +0000 |
---|---|---|
committer | Mark Whitley | 2000-12-07 19:56:48 +0000 |
commit | f57c944e09417edcbcd69f2b01b937cadef39db2 (patch) | |
tree | a55822621d54bd82c54e272fa986e45698fea0f1 /util-linux/umount.c | |
parent | 7b5c16ebe5f1b057603cf1c0b0187be418725c42 (diff) | |
download | busybox-f57c944e09417edcbcd69f2b01b937cadef39db2.zip busybox-f57c944e09417edcbcd69f2b01b937cadef39db2.tar.gz |
Changed names of functions in utility.c and all affected files, to make
compliant with the style guide. Everybody rebuild your tags file!
Diffstat (limited to 'util-linux/umount.c')
-rw-r--r-- | util-linux/umount.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util-linux/umount.c b/util-linux/umount.c index eff0804..e76e052 100644 --- a/util-linux/umount.c +++ b/util-linux/umount.c @@ -79,7 +79,7 @@ void mtab_read(void) return; if ((fp = setmntent(mtab_file, "r")) == NULL) { - errorMsg("Cannot open %s\n", mtab_file); + error_msg("Cannot open %s\n", mtab_file); return; } while ((e = getmntent(fp))) { @@ -179,7 +179,7 @@ static int do_umount(const char *name, int useMtab) if (status != 0 && doForce == TRUE) { status = umount2(blockDevice, MNT_FORCE); if (status != 0) { - fatalError("forced umount of %s failed!\n", blockDevice); + error_msg_and_die("forced umount of %s failed!\n", blockDevice); } } #endif @@ -187,9 +187,9 @@ static int do_umount(const char *name, int useMtab) status = mount(blockDevice, name, NULL, MS_MGC_VAL | MS_REMOUNT | MS_RDONLY, NULL); if (status == 0) { - errorMsg("%s busy - remounted read-only\n", blockDevice); + error_msg("%s busy - remounted read-only\n", blockDevice); } else { - errorMsg("Cannot remount %s read-only\n", blockDevice); + error_msg("Cannot remount %s read-only\n", blockDevice); } } if (status == 0) { |