diff options
Diffstat (limited to 'ln.c')
-rw-r--r-- | ln.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -23,7 +23,6 @@ | |||
23 | 23 | ||
24 | #include "internal.h" | 24 | #include "internal.h" |
25 | #define BB_DECLARE_EXTERN | 25 | #define BB_DECLARE_EXTERN |
26 | #define bb_need_name_too_long | ||
27 | #define bb_need_not_a_directory | 26 | #define bb_need_not_a_directory |
28 | #include "messages.c" | 27 | #include "messages.c" |
29 | 28 | ||
@@ -92,7 +91,7 @@ extern int ln_main(int argc, char **argv) | |||
92 | 91 | ||
93 | linkIntoDirFlag = isDirectory(linkName, followLinks, NULL); | 92 | linkIntoDirFlag = isDirectory(linkName, followLinks, NULL); |
94 | if ((argc >= 3) && linkIntoDirFlag == FALSE) { | 93 | if ((argc >= 3) && linkIntoDirFlag == FALSE) { |
95 | fprintf(stderr, not_a_directory, "ln", linkName); | 94 | errorMsg(not_a_directory, linkName); |
96 | exit FALSE; | 95 | exit FALSE; |
97 | } | 96 | } |
98 | 97 | ||