diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-12-18 03:27:46 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-12-18 03:27:46 +0100 |
commit | f282c6b65775d3dff03de6fd3585722a1638f734 (patch) | |
tree | cecec1cf12d3c7c26a23ac5f3e073284e7465af2 /coreutils | |
parent | f85bd1a7a7e712c4dd2dfd86daa9ab01a708b7b4 (diff) | |
download | busybox-w32-f282c6b65775d3dff03de6fd3585722a1638f734.tar.gz busybox-w32-f282c6b65775d3dff03de6fd3585722a1638f734.tar.bz2 busybox-w32-f282c6b65775d3dff03de6fd3585722a1638f734.zip |
libbb: remove is_directory's argument which is always NULL
function old new delta
send_cgi_and_exit 892 890 -2
ln_main 447 445 -2
handle_incoming_and_exit 2784 2780 -4
is_directory 66 59 -7
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 1/6 up/down: 2/-19) Total: -15 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/ln.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/ln.c b/coreutils/ln.c index 88a9a8f91..0eb3e6579 100644 --- a/coreutils/ln.c +++ b/coreutils/ln.c | |||
@@ -69,8 +69,8 @@ int ln_main(int argc, char **argv) | |||
69 | src = last; | 69 | src = last; |
70 | 70 | ||
71 | if (is_directory(src, | 71 | if (is_directory(src, |
72 | (opts & LN_NODEREFERENCE) ^ LN_NODEREFERENCE, | 72 | (opts & LN_NODEREFERENCE) ^ LN_NODEREFERENCE |
73 | NULL) | 73 | ) |
74 | ) { | 74 | ) { |
75 | src_name = xstrdup(*argv); | 75 | src_name = xstrdup(*argv); |
76 | src = concat_path_file(src, bb_get_last_path_component_strip(src_name)); | 76 | src = concat_path_file(src, bb_get_last_path_component_strip(src_name)); |