commit | 110fc0caccd033b653e099ebbd79889e50bb3643 | [log] [tgz] |
---|---|---|
author | Pavel Roskin <proski@gnu.org> | Sun Jun 18 00:02:24 2000 +0000 |
committer | Pavel Roskin <proski@gnu.org> | Sun Jun 18 00:02:24 2000 +0000 |
tree | 04270a5888f7830bac49463bf21e51b118abdfcd | |
parent | 74c66ad06ebc5bfbf7187ed53196625462db1a9a [diff] |
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
diff --git a/coreutils/ln.c b/coreutils/ln.c index 634c990..3714822 100644 --- a/coreutils/ln.c +++ b/coreutils/ln.c
@@ -96,7 +96,7 @@ linkIntoDirFlag = isDirectory(linkName, TRUE, NULL); - if ((argc > 3) && !linkIntoDirFlag) { + if ((argc >= 3) && linkIntoDirFlag == FALSE) { fprintf(stderr, not_a_directory, "ln", linkName); exit FALSE; }