diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-13 09:08:27 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-13 09:08:27 +0100 |
commit | 6331cf059ccfdf35f4e5a505cbae885094cc41b0 (patch) | |
tree | ccb4b4f0d96d9636861a75f7fc6c97b8b15bd306 /e2fsprogs/old_e2fsprogs/fsck.c | |
parent | f4fee418ae9f5308b4d32bc8d4e618f779f3203f (diff) | |
download | busybox-w32-6331cf059ccfdf35f4e5a505cbae885094cc41b0.tar.gz busybox-w32-6331cf059ccfdf35f4e5a505cbae885094cc41b0.tar.bz2 busybox-w32-6331cf059ccfdf35f4e5a505cbae885094cc41b0.zip |
*: use "can't" instead of "cannot"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'e2fsprogs/old_e2fsprogs/fsck.c')
-rw-r--r-- | e2fsprogs/old_e2fsprogs/fsck.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/e2fsprogs/old_e2fsprogs/fsck.c b/e2fsprogs/old_e2fsprogs/fsck.c index 98e4e38fe..687938c24 100644 --- a/e2fsprogs/old_e2fsprogs/fsck.c +++ b/e2fsprogs/old_e2fsprogs/fsck.c | |||
@@ -1001,7 +1001,7 @@ static int ignore(struct fs_info *fs) | |||
1001 | s = find_fsck(fs->type); | 1001 | s = find_fsck(fs->type); |
1002 | if (s == NULL) { | 1002 | if (s == NULL) { |
1003 | if (wanted) | 1003 | if (wanted) |
1004 | bb_error_msg("cannot check %s: fsck.%s not found", | 1004 | bb_error_msg("can't check %s: fsck.%s not found", |
1005 | fs->device, fs->type); | 1005 | fs->device, fs->type); |
1006 | return 1; | 1006 | return 1; |
1007 | } | 1007 | } |
@@ -1203,7 +1203,7 @@ static void PRS(int argc, char **argv) | |||
1203 | * /proc/partitions isn't found. | 1203 | * /proc/partitions isn't found. |
1204 | */ | 1204 | */ |
1205 | if (access("/proc/partitions", R_OK) < 0) { | 1205 | if (access("/proc/partitions", R_OK) < 0) { |
1206 | bb_perror_msg_and_die("cannot open /proc/partitions " | 1206 | bb_perror_msg_and_die("can't open /proc/partitions " |
1207 | "(is /proc mounted?)"); | 1207 | "(is /proc mounted?)"); |
1208 | } | 1208 | } |
1209 | /* | 1209 | /* |
@@ -1215,7 +1215,7 @@ static void PRS(int argc, char **argv) | |||
1215 | "must be root to scan for matching filesystems: %s\n", arg); | 1215 | "must be root to scan for matching filesystems: %s\n", arg); |
1216 | else | 1216 | else |
1217 | bb_error_msg_and_die( | 1217 | bb_error_msg_and_die( |
1218 | "cannot find matching filesystem: %s", arg); | 1218 | "can't find matching filesystem: %s", arg); |
1219 | } | 1219 | } |
1220 | devices[num_devices++] = dev ? dev : string_copy(arg); | 1220 | devices[num_devices++] = dev ? dev : string_copy(arg); |
1221 | continue; | 1221 | continue; |