From 28e9fc9a941b08892f7de8b73a224636002100fe Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Wed, 14 Mar 2001 10:42:20 +0000 Subject: might as well throw a few crumbs at the anal compiler --- sbin/isakmpd/connection.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sbin/isakmpd') diff --git a/sbin/isakmpd/connection.c b/sbin/isakmpd/connection.c index 0c6a7a06620..6e09a330681 100644 --- a/sbin/isakmpd/connection.c +++ b/sbin/isakmpd/connection.c @@ -1,4 +1,4 @@ -/* $OpenBSD: connection.c,v 1.14 2001/03/14 10:33:16 deraadt Exp $ */ +/* $OpenBSD: connection.c,v 1.15 2001/03/14 10:42:19 deraadt Exp $ */ /* $EOM: connection.c,v 1.28 2000/11/23 12:21:18 niklas Exp $ */ /* @@ -461,10 +461,10 @@ connection_reinit (void) /* Remove all present connections. */ - while (conn = TAILQ_FIRST (&connections)) + while ((conn = TAILQ_FIRST (&connections))) connection_teardown (conn->name); - while (pconn = TAILQ_FIRST (&connections_passive)) + while ((pconn = TAILQ_FIRST (&connections_passive))) connection_passive_teardown (pconn->name); /* Setup new connections, as the (new) config directs. */ -- cgit v1.2.3