aboutsummaryrefslogtreecommitdiff
path: root/coreutils/ln.c
diff options
context:
space:
mode:
authorPavel Roskin <proski@gnu.org>2000-06-18 00:02:24 +0000
committerPavel Roskin <proski@gnu.org>2000-06-18 00:02:24 +0000
commit110fc0caccd033b653e099ebbd79889e50bb3643 (patch)
tree04270a5888f7830bac49463bf21e51b118abdfcd /coreutils/ln.c
parent74c66ad06ebc5bfbf7187ed53196625462db1a9a (diff)
downloadbusybox-110fc0caccd033b653e099ebbd79889e50bb3643.tar.gz
Check for 3 and more arguments was incorrect
It is only allowed for linking to a directory But linking to a directory still fails and may be removed
Diffstat (limited to 'coreutils/ln.c')
-rw-r--r--coreutils/ln.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/ln.c b/coreutils/ln.c
index 634c9905d..371482251 100644
--- a/coreutils/ln.c
+++ b/coreutils/ln.c
@@ -96,7 +96,7 @@ extern int ln_main(int argc, char **argv)
linkIntoDirFlag = isDirectory(linkName, TRUE, NULL);
- if ((argc > 3) && !linkIntoDirFlag) {
+ if ((argc >= 3) && linkIntoDirFlag == FALSE) {
fprintf(stderr, not_a_directory, "ln", linkName);
exit FALSE;
}