aboutsummaryrefslogtreecommitdiff
path: root/util-linux/rdate.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-10-01 17:52:14 +0000
committerMatt Kraai <kraai@debian.org>2001-10-01 17:52:14 +0000
commitc9fc633f9ed09143a63f62f26b0afb619a31273c (patch)
treef2ddb19d9aa993a616c69dff143f5bad18205076 /util-linux/rdate.c
parent524fcb9e01b6aa48334bfd6470045a0f3591cae9 (diff)
downloadbusybox-c9fc633f9ed09143a63f62f26b0afb619a31273c.tar.gz
Use port 37 by default.
Diffstat (limited to 'util-linux/rdate.c')
-rw-r--r--util-linux/rdate.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/util-linux/rdate.c b/util-linux/rdate.c
index 50be4de8c..04a76129a 100644
--- a/util-linux/rdate.c
+++ b/util-linux/rdate.c
@@ -46,17 +46,17 @@ static time_t askremotedate(const char *host)
int fd;
h = xgethostbyname(host); /* get the IP addr */
+ memcpy(&s_in.sin_addr, h->h_addr, sizeof(s_in.sin_addr));
+
+ s_in.sin_port = htons(37); /* find port # */
+ if ((tserv = getservbyname("time", "tcp")) != NULL)
+ s_in.sin_port = tserv->s_port;
- if ((tserv = getservbyname("time", "tcp")) == NULL) /* find port # */
- perror_msg_and_die("time");
+ s_in.sin_family = AF_INET;
if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) /* get net connection */
perror_msg_and_die("socket");
- memcpy(&s_in.sin_addr, h->h_addr, sizeof(s_in.sin_addr));
- s_in.sin_port= tserv->s_port;
- s_in.sin_family = AF_INET;
-
if (connect(fd, (struct sockaddr *)&s_in, sizeof(s_in)) < 0) /* connect to time server */
perror_msg_and_die("%s", host);