aboutsummaryrefslogtreecommitdiff
path: root/mkdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'mkdir.c')
-rw-r--r--mkdir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkdir.c b/mkdir.c
index 07b18713a..299f29806 100644
--- a/mkdir.c
+++ b/mkdir.c
@@ -52,7 +52,7 @@ extern int mkdir_main(int argc, char **argv)
52 /* Find the specified modes */ 52 /* Find the specified modes */
53 mode = 0; 53 mode = 0;
54 if (parse_mode(*(++argv), &mode) == FALSE) { 54 if (parse_mode(*(++argv), &mode) == FALSE) {
55 error_msg_and_die("Unknown mode: %s\n", *argv); 55 error_msg_and_die("Unknown mode: %s", *argv);
56 } 56 }
57 /* Set the umask for this process so it doesn't 57 /* Set the umask for this process so it doesn't
58 * screw up whatever the user just entered. */ 58 * screw up whatever the user just entered. */
@@ -85,7 +85,7 @@ extern int mkdir_main(int argc, char **argv)
85 strcpy(buf, *argv); 85 strcpy(buf, *argv);
86 status = stat(buf, &statBuf); 86 status = stat(buf, &statBuf);
87 if (parentFlag == FALSE && status != -1 && errno != ENOENT) { 87 if (parentFlag == FALSE && status != -1 && errno != ENOENT) {
88 error_msg_and_die("%s: File exists\n", buf); 88 error_msg_and_die("%s: File exists", buf);
89 } 89 }
90 if (parentFlag == TRUE) { 90 if (parentFlag == TRUE) {
91 strcat(buf, "/"); 91 strcat(buf, "/");