diff options
author | Denis Vlasenko | 2007-09-05 11:30:34 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-09-05 11:30:34 +0000 |
commit | beffd43d8e393b68787a00d9c6078a2b367afd01 (patch) | |
tree | 485a6f36aa57e182801babc1365f128bfaa52f5e /include | |
parent | 7e0fbf9c26350a819661241bc925cb88f26bb992 (diff) | |
download | busybox-beffd43d8e393b68787a00d9c6078a2b367afd01.zip busybox-beffd43d8e393b68787a00d9c6078a2b367afd01.tar.gz |
busybox --install -s: prevent puzzling "/bin/busybox: Invalid argument" message
libbb: comment out realpath, add readlink which doesn't warn
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/libbb.h b/include/libbb.h index cf00b52..f165894 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -249,9 +249,10 @@ void xmove_fd(int, int); DIR *xopendir(const char *path); DIR *warn_opendir(const char *path); -char *xrealloc_getcwd_or_warn(char *cwd); +/* UNUSED: char *xmalloc_realpath(const char *path); */ +char *xmalloc_readlink(const char *path); char *xmalloc_readlink_or_warn(const char *path); -char *xmalloc_realpath(const char *path); +char *xrealloc_getcwd_or_warn(char *cwd); //TODO: signal(sid, f) is the same? then why? @@ -317,8 +318,8 @@ enum { }; /* Create stream socket, and allocate suitable lsa. * (lsa of correct size and lsa->sa.sa_family (AF_INET/AF_INET6)) - * af == AF_UNSPEC will result in trying to create IPv6, and - * if kernel doesn't support it, IPv4. + * af == AF_UNSPEC will result in trying to create IPv6 socket, + * and if kernel doesn't support it, IPv4. */ int xsocket_type(len_and_sockaddr **lsap, USE_FEATURE_IPV6(int af,) int sock_type); int xsocket_stream(len_and_sockaddr **lsap); |