Yet another silly little byte saving. couldn't -> cannot

This commit is contained in:
Denis Vlasenko
2006-09-29 21:30:43 +00:00
parent 6c30db8bd3
commit a959588b80
17 changed files with 33 additions and 33 deletions

View File

@@ -717,7 +717,7 @@ static int builtin_source(struct child_prog *child)
/* XXX search through $PATH is missing */
input = fopen(child->argv[1], "r");
if (!input) {
bb_error_msg("Couldn't open file '%s'", child->argv[1]);
bb_error_msg("cannot open '%s'", child->argv[1]);
return EXIT_FAILURE;
}
@@ -1120,7 +1120,7 @@ static void pseudo_exec(struct child_prog *child)
#endif
debug_printf("exec of %s\n",child->argv[0]);
execvp(child->argv[0],child->argv);
bb_perror_msg("couldn't exec: %s",child->argv[0]);
bb_perror_msg("cannot exec: %s",child->argv[0]);
_exit(1);
} else if (child->group) {
debug_printf("runtime nesting to group\n");