aboutsummaryrefslogtreecommitdiff
path: root/util-linux/rdate.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-09-21 04:05:38 +0000
committerEric Andersen <andersen@codepoet.org>2000-09-21 04:05:38 +0000
commitba35b984448810f6ead7579f85b28cf089f64033 (patch)
tree3b4414b2fdf353b4a419d030795373b17de703a3 /util-linux/rdate.c
parentd2f567776241013fedf5b690cd74fb6baad78b1c (diff)
downloadbusybox-ba35b984448810f6ead7579f85b28cf089f64033.tar.gz
Fix a potential warning
Diffstat (limited to 'util-linux/rdate.c')
-rw-r--r--util-linux/rdate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/rdate.c b/util-linux/rdate.c
index 0668d302a..20536d24b 100644
--- a/util-linux/rdate.c
+++ b/util-linux/rdate.c
@@ -63,7 +63,7 @@ time_t askremotedate(char *host)
sin.sin_port= tserv->s_port;
sin.sin_family = AF_INET;
- if (connect(fd, &sin, sizeof(sin)) < 0) { /* connect to time server */
+ if (connect(fd, (struct sockaddr *)&sin, sizeof(sin)) < 0) { /* connect to time server */
errorMsg("%s: %s\n", host, strerror(errno));
close(fd);
return(-1);