diff options
author | Bernhard Reutner-Fischer | 2008-07-21 13:46:54 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2008-07-21 13:46:54 +0000 |
commit | a53de7f7c2cd3ac46b26642aafb1a573a096a80d (patch) | |
tree | 76b95b7a441628b3495f744bec5d862b5250f562 /util-linux | |
parent | e1e5174942d4624e3abb8b98fe404afdbb4edad1 (diff) | |
download | busybox-a53de7f7c2cd3ac46b26642aafb1a573a096a80d.zip busybox-a53de7f7c2cd3ac46b26642aafb1a573a096a80d.tar.gz |
- fix spelling
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/fdisk.c | 6 | ||||
-rw-r--r-- | util-linux/umount.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index eeef18e..702567a 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c @@ -83,9 +83,9 @@ struct partition { unsigned char size4[4]; /* nr of sectors in partition */ } PACKED; -static const char unable_to_open[] ALIGN1 = "cannot open %s"; -static const char unable_to_read[] ALIGN1 = "cannot read from %s"; -static const char unable_to_seek[] ALIGN1 = "cannot seek on %s"; +static const char unable_to_open[] ALIGN1 = "can't open %s"; +static const char unable_to_read[] ALIGN1 = "can't read from %s"; +static const char unable_to_seek[] ALIGN1 = "can't seek on %s"; enum label_type { LABEL_DOS, LABEL_SUN, LABEL_SGI, LABEL_AIX, LABEL_OSF diff --git a/util-linux/umount.c b/util-linux/umount.c index 00f1253..0662cea 100644 --- a/util-linux/umount.c +++ b/util-linux/umount.c @@ -69,7 +69,7 @@ int umount_main(int argc UNUSED_PARAM, char **argv) fp = setmntent(bb_path_mtab_file, "r"); if (!fp) { if (opt & OPT_ALL) - bb_error_msg_and_die("cannot open %s", bb_path_mtab_file); + bb_error_msg_and_die("can't open %s", bb_path_mtab_file); } else { while (getmntent_r(fp, &me, path, PATH_MAX)) { /* Match fstype if passed */ @@ -132,13 +132,13 @@ int umount_main(int argc UNUSED_PARAM, char **argv) const char *msg = "%s busy - remounted read-only"; curstat = mount(m->device, zapit, NULL, MS_REMOUNT|MS_RDONLY, NULL); if (curstat) { - msg = "cannot remount %s read-only"; + msg = "can't remount %s read-only"; status = EXIT_FAILURE; } bb_error_msg(msg, m->device); } else { status = EXIT_FAILURE; - bb_perror_msg("cannot %sumount %s", (doForce ? "forcibly " : ""), zapit); + bb_perror_msg("can't %sumount %s", (doForce ? "forcibly " : ""), zapit); } } else { // De-allocate the loop device. This ioctl should be ignored on |