diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-26 01:09:46 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-26 01:09:46 +0000 |
commit | ecf2793bffe34a7300f20b77ab39b67a6e939e59 (patch) | |
tree | 4f61a7fd5a6a3ebbca053c55dc68b8a3edb7700b /util-linux | |
parent | e4d50cf154eab6730b3ba1dfb443d36d63a6ba3e (diff) | |
download | busybox-w32-ecf2793bffe34a7300f20b77ab39b67a6e939e59.tar.gz busybox-w32-ecf2793bffe34a7300f20b77ab39b67a6e939e59.tar.bz2 busybox-w32-ecf2793bffe34a7300f20b77ab39b67a6e939e59.zip |
xconnect is non-conforming to "xfunc like libc" rule. Fixing
git-svn-id: svn://busybox.net/trunk/busybox@16440 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/rdate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/rdate.c b/util-linux/rdate.c index 6ad055434..645b0b929 100644 --- a/util-linux/rdate.c +++ b/util-linux/rdate.c | |||
@@ -42,7 +42,7 @@ static time_t askremotedate(const char *host) | |||
42 | alarm(10); | 42 | alarm(10); |
43 | signal(SIGALRM, socket_timeout); | 43 | signal(SIGALRM, socket_timeout); |
44 | 44 | ||
45 | fd = xconnect(&s_in); | 45 | fd = xconnect_tcp_v4(&s_in); |
46 | 46 | ||
47 | if (safe_read(fd, (void *)&nett, 4) != 4) /* read time from server */ | 47 | if (safe_read(fd, (void *)&nett, 4) != 4) /* read time from server */ |
48 | bb_error_msg_and_die("%s did not send the complete time", host); | 48 | bb_error_msg_and_die("%s did not send the complete time", host); |