diff options
author | 2004-06-22 07:59:48 +0000 | |
---|---|---|
committer | 2004-06-22 07:59:48 +0000 | |
commit | 19a3a5eb79604f8502e9da454b26e033bfe0b6de (patch) | |
tree | 3dc50181d2b107bdb99551cd3a0eae40fcd8f1c8 | |
parent | Precedence fix; ok henning@ (diff) | |
download | wireguard-openbsd-19a3a5eb79604f8502e9da454b26e033bfe0b6de.tar.xz wireguard-openbsd-19a3a5eb79604f8502e9da454b26e033bfe0b6de.zip |
Precedence and type fix; ok henning@
-rw-r--r-- | usr.sbin/ntpd/ntp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/ntpd/ntp.c b/usr.sbin/ntpd/ntp.c index a6b4187db63..3a0f408d583 100644 --- a/usr.sbin/ntpd/ntp.c +++ b/usr.sbin/ntpd/ntp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntp.c,v 1.8 2004/06/18 04:51:31 henning Exp $ */ +/* $OpenBSD: ntp.c,v 1.9 2004/06/22 07:59:48 alexander Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -118,7 +118,7 @@ ntp_main(int pipe_prnt[2], struct ntpd_conf *conf) if (peer_cnt > idx2peer_elms || peer_cnt + IDX2PEER_RESERVE < idx2peer_elms) { if ((newp = realloc(idx2peer, sizeof(void *) * - peer_cnt + IDX2PEER_RESERVE)) == NULL) { + (peer_cnt + IDX2PEER_RESERVE))) == NULL) { /* panic for now */ log_warn("could not resize idx2peer from %u -> " "%u entries", idx2peer_elms, @@ -132,8 +132,8 @@ ntp_main(int pipe_prnt[2], struct ntpd_conf *conf) new_cnt = PFD_MAX + peer_cnt + listener_cnt; if (new_cnt > pfd_elms || new_cnt + PFD_RESERVE < pfd_elms) { - if ((newp = realloc(pfd, sizeof(void *) * - new_cnt + PFD_RESERVE)) == NULL) { + if ((newp = realloc(pfd, sizeof(struct pollfd) * + (new_cnt + PFD_RESERVE))) == NULL) { /* panic for now */ log_warn("could not resize pfd from %u -> " "%u entries", pfd_elms, |