diff options
| author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-29 21:30:43 +0000 |
|---|---|---|
| committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-29 21:30:43 +0000 |
| commit | 2fc3897df50b4afafd49ebe58c4ba25eddf2a22b (patch) | |
| tree | 331b3963cb98fded02b753ca33bfa37cb48a97c6 /shell | |
| parent | 1b35b0f2714fa94733d9f37a9c5cc92538a160f6 (diff) | |
| download | busybox-w32-2fc3897df50b4afafd49ebe58c4ba25eddf2a22b.tar.gz busybox-w32-2fc3897df50b4afafd49ebe58c4ba25eddf2a22b.tar.bz2 busybox-w32-2fc3897df50b4afafd49ebe58c4ba25eddf2a22b.zip | |
Yet another silly little byte saving. couldn't -> cannot
git-svn-id: svn://busybox.net/trunk/busybox@16263 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
| -rw-r--r-- | shell/hush.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/hush.c b/shell/hush.c index cea1d3c60..779c9a373 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
| @@ -717,7 +717,7 @@ static int builtin_source(struct child_prog *child) | |||
| 717 | /* XXX search through $PATH is missing */ | 717 | /* XXX search through $PATH is missing */ |
| 718 | input = fopen(child->argv[1], "r"); | 718 | input = fopen(child->argv[1], "r"); |
| 719 | if (!input) { | 719 | if (!input) { |
| 720 | bb_error_msg("Couldn't open file '%s'", child->argv[1]); | 720 | bb_error_msg("cannot open '%s'", child->argv[1]); |
| 721 | return EXIT_FAILURE; | 721 | return EXIT_FAILURE; |
| 722 | } | 722 | } |
| 723 | 723 | ||
| @@ -1120,7 +1120,7 @@ static void pseudo_exec(struct child_prog *child) | |||
| 1120 | #endif | 1120 | #endif |
| 1121 | debug_printf("exec of %s\n",child->argv[0]); | 1121 | debug_printf("exec of %s\n",child->argv[0]); |
| 1122 | execvp(child->argv[0],child->argv); | 1122 | execvp(child->argv[0],child->argv); |
| 1123 | bb_perror_msg("couldn't exec: %s",child->argv[0]); | 1123 | bb_perror_msg("cannot exec: %s",child->argv[0]); |
| 1124 | _exit(1); | 1124 | _exit(1); |
| 1125 | } else if (child->group) { | 1125 | } else if (child->group) { |
| 1126 | debug_printf("runtime nesting to group\n"); | 1126 | debug_printf("runtime nesting to group\n"); |
