aboutsummaryrefslogtreecommitdiff
path: root/coreutils/install.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-20 13:28:22 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-20 13:28:22 +0000
commit404aa1479965df0d5d019a6a14f62fa696419e4c (patch)
treec6f3435738900c8d53832eb919b1b2c3d524f2e5 /coreutils/install.c
parent753fc33dda8a58173631650d3218e6f7b51ea58d (diff)
downloadbusybox-w32-404aa1479965df0d5d019a6a14f62fa696419e4c.tar.gz
busybox-w32-404aa1479965df0d5d019a6a14f62fa696419e4c.tar.bz2
busybox-w32-404aa1479965df0d5d019a6a14f62fa696419e4c.zip
message string changes, mostly for consistency, also -32 bytes in .rodata
git-svn-id: svn://busybox.net/trunk/busybox@16412 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/install.c')
-rw-r--r--coreutils/install.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/install.c b/coreutils/install.c
index 2178d435d..54adc2b6e 100644
--- a/coreutils/install.c
+++ b/coreutils/install.c
@@ -61,7 +61,7 @@ int install_main(int argc, char **argv)
61 umask(0); 61 umask(0);
62 62
63 /* Create directories 63 /* Create directories
64 * dont use bb_make_directory() as it cant change uid or gid 64 * don't use bb_make_directory() as it can't change uid or gid
65 * perhaps bb_make_directory() should be improved. 65 * perhaps bb_make_directory() should be improved.
66 */ 66 */
67 if (flags & INSTALL_OPT_DIRECTORY) { 67 if (flags & INSTALL_OPT_DIRECTORY) {
@@ -77,7 +77,7 @@ int install_main(int argc, char **argv)
77 } 77 }
78 if (mkdir(*argv, mode) == -1) { 78 if (mkdir(*argv, mode) == -1) {
79 if (errno != EEXIST) { 79 if (errno != EEXIST) {
80 bb_perror_msg("coulnt create %s", *argv); 80 bb_perror_msg("cannot create %s", *argv);
81 ret = EXIT_FAILURE; 81 ret = EXIT_FAILURE;
82 break; 82 break;
83 } 83 }