aboutsummaryrefslogtreecommitdiff
path: root/mkdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'mkdir.c')
-rw-r--r--mkdir.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mkdir.c b/mkdir.c
index b18c949b8..f6e08cadc 100644
--- a/mkdir.c
+++ b/mkdir.c
@@ -62,7 +62,7 @@ extern int mkdir_main(int argc, char **argv)
62 /* Find the specified modes */ 62 /* Find the specified modes */
63 mode = 0; 63 mode = 0;
64 if (parse_mode(*(++argv), &mode) == FALSE) { 64 if (parse_mode(*(++argv), &mode) == FALSE) {
65 fprintf(stderr, "Unknown mode: %s\n", *argv); 65 errorMsg("Unknown mode: %s\n", *argv);
66 exit FALSE; 66 exit FALSE;
67 } 67 }
68 /* Set the umask for this process so it doesn't 68 /* Set the umask for this process so it doesn't
@@ -91,13 +91,13 @@ extern int mkdir_main(int argc, char **argv)
91 char buf[BUFSIZ + 1]; 91 char buf[BUFSIZ + 1];
92 92
93 if (strlen(*argv) > BUFSIZ - 1) { 93 if (strlen(*argv) > BUFSIZ - 1) {
94 fprintf(stderr, name_too_long, "mkdir"); 94 errorMsg(name_too_long);
95 exit FALSE; 95 exit FALSE;
96 } 96 }
97 strcpy(buf, *argv); 97 strcpy(buf, *argv);
98 status = stat(buf, &statBuf); 98 status = stat(buf, &statBuf);
99 if (parentFlag == FALSE && status != -1 && errno != ENOENT) { 99 if (parentFlag == FALSE && status != -1 && errno != ENOENT) {
100 fprintf(stderr, "%s: File exists\n", buf); 100 errorMsg("%s: File exists\n", buf);
101 exit FALSE; 101 exit FALSE;
102 } 102 }
103 if (parentFlag == TRUE) { 103 if (parentFlag == TRUE) {