diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2001-10-09 14:53:06 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2001-10-09 14:53:06 +0000 |
commit | edeea0042c9d775c4e35102da129a15ab48d52d5 (patch) | |
tree | f6b0517b88353c92ca34252db0c7eb607e5aabb2 /sbin | |
parent | a8bf1b17a65a35c98b235dbeb876bccd84b2dc0f (diff) |
Print correct portnr in warning msg.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/isakmpd/udp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/isakmpd/udp.c b/sbin/isakmpd/udp.c index cec34238a38..446f677f207 100644 --- a/sbin/isakmpd/udp.c +++ b/sbin/isakmpd/udp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udp.c,v 1.51 2001/08/25 22:13:27 niklas Exp $ */ +/* $OpenBSD: udp.c,v 1.52 2001/10/09 14:53:05 ho Exp $ */ /* $EOM: udp.c,v 1.57 2001/01/26 10:09:57 niklas Exp $ */ /* @@ -507,7 +507,7 @@ udp_create (char *name) if (!u) { log_print ("udp_create: %s:%s must exist as a listener too", addr_str, - udp_default_port); + port_str); rv = 0; goto ret; } |