aboutsummaryrefslogtreecommitdiff
path: root/coreutils/install.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-10-20 13:28:22 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-10-20 13:28:22 +0000
commite1a0d486e4804eae098571f1a6788394c2ee51ae (patch)
treec6f3435738900c8d53832eb919b1b2c3d524f2e5 /coreutils/install.c
parentdd2982882bb192ea757f32514bc2ea0bc96f5ba0 (diff)
downloadbusybox-w32-e1a0d486e4804eae098571f1a6788394c2ee51ae.tar.gz
busybox-w32-e1a0d486e4804eae098571f1a6788394c2ee51ae.tar.bz2
busybox-w32-e1a0d486e4804eae098571f1a6788394c2ee51ae.zip
message string changes, mostly for consistency, also -32 bytes in .rodata
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 }