summaryrefslogtreecommitdiff
path: root/sbin/isakmpd/exchange.c
diff options
context:
space:
mode:
authorHakan Olsson <ho@cvs.openbsd.org>2005-03-05 12:25:13 +0000
committerHakan Olsson <ho@cvs.openbsd.org>2005-03-05 12:25:13 +0000
commitf4a489e4829bc08d18998f26c74459f3ac1ae07e (patch)
tree49919cf5d9cf7868a4556a3dcf6abe652b488236 /sbin/isakmpd/exchange.c
parenteb91f017121b838b41efeb266f8c190b74b5360d (diff)
Silence a couple of annoying gcc3 warnings. hshoexer@ ok.
Diffstat (limited to 'sbin/isakmpd/exchange.c')
-rw-r--r--sbin/isakmpd/exchange.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/sbin/isakmpd/exchange.c b/sbin/isakmpd/exchange.c
index e45340b37d2..c5c720ac372 100644
--- a/sbin/isakmpd/exchange.c
+++ b/sbin/isakmpd/exchange.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: exchange.c,v 1.109 2005/03/04 13:33:32 markus Exp $ */
+/* $OpenBSD: exchange.c,v 1.110 2005/03/05 12:25:12 ho Exp $ */
/* $EOM: exchange.c,v 1.143 2000/12/04 00:02:25 angelos Exp $ */
/*
@@ -190,8 +190,11 @@ exchange_script(struct exchange *exchange)
return script_transaction;
#endif
default:
- if (exchange->type >= ISAKMP_EXCH_DOI_MIN &&
- exchange->type <= ISAKMP_EXCH_DOI_MAX)
+ if (exchange->type >= ISAKMP_EXCH_DOI_MIN
+#if 0 /* always true; silence GCC3 warning */
+ && exchange->type <= ISAKMP_EXCH_DOI_MAX
+#endif
+ )
return exchange->doi->exchange_script(exchange->type);
}
return 0;