rodata cleanup. "unable to" == "cannot". -300 bytes

This commit is contained in:
Denis Vlasenko
2006-11-18 22:04:09 +00:00
parent 61126ab30a
commit 89f0b3486d
24 changed files with 65 additions and 65 deletions

View File

@ -38,7 +38,7 @@ int rm_main(int argc, char **argv)
const char *base = bb_get_last_path_component(*argv);
if ((base[0] == '.') && (!base[1] || ((base[1] == '.') && !base[2]))) {
bb_error_msg("cannot remove `.' or `..'");
bb_error_msg("cannot remove '.' or '..'");
} else if (remove_file(*argv, flags) >= 0) {
continue;
}