diff options
author | Matt Kraai <kraai@debian.org> | 2000-07-14 01:51:25 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2000-07-14 01:51:25 +0000 |
commit | d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb (patch) | |
tree | 62127f20fc07758e445d8c4e186306cbe83d77b1 /coreutils/mkdir.c | |
parent | 4ac6cb534d78d63d7b0a206118c56bad7024b9f8 (diff) | |
download | busybox-w32-d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb.tar.gz busybox-w32-d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb.tar.bz2 busybox-w32-d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb.zip |
Use errorMsg rather than fprintf.
Diffstat (limited to 'coreutils/mkdir.c')
-rw-r--r-- | coreutils/mkdir.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/mkdir.c b/coreutils/mkdir.c index b18c949b8..f6e08cadc 100644 --- a/coreutils/mkdir.c +++ b/coreutils/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) { |