diff options
Diffstat (limited to 'coreutils/ln.c')
-rw-r--r-- | coreutils/ln.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/ln.c b/coreutils/ln.c index 7c282b001..885ba61db 100644 --- a/coreutils/ln.c +++ b/coreutils/ln.c | |||
@@ -2,7 +2,7 @@ | |||
2 | /* | 2 | /* |
3 | * Mini ln implementation for busybox | 3 | * Mini ln implementation for busybox |
4 | * | 4 | * |
5 | * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org> | 5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
6 | * | 6 | * |
7 | * This program is free software; you can redistribute it and/or modify | 7 | * This program is free software; you can redistribute it and/or modify |
8 | * it under the terms of the GNU General Public License as published by | 8 | * it under the terms of the GNU General Public License as published by |
@@ -88,14 +88,14 @@ extern int ln_main(int argc, char **argv) | |||
88 | if (flag & LN_SYMLINK) { | 88 | if (flag & LN_SYMLINK) { |
89 | link_func = symlink; | 89 | link_func = symlink; |
90 | } | 90 | } |
91 | 91 | ||
92 | if (link_func(*argv, src) != 0) { | 92 | if (link_func(*argv, src) != 0) { |
93 | bb_perror_msg(src); | 93 | bb_perror_msg(src); |
94 | status = EXIT_FAILURE; | 94 | status = EXIT_FAILURE; |
95 | } | 95 | } |
96 | 96 | ||
97 | free(src_name); | 97 | free(src_name); |
98 | 98 | ||
99 | } while ((++argv)[1]); | 99 | } while ((++argv)[1]); |
100 | 100 | ||
101 | return status; | 101 | return status; |