diff options
author | 2021-01-18 15:26:04 +0000 | |
---|---|---|
committer | 2021-01-18 15:26:04 +0000 | |
commit | afd6e24d406ea0b10eba2ded44ba424e469d8431 (patch) | |
tree | 3315ce9af1d10a2f2afcd2a05c102782e48669c2 | |
parent | Remove unused variable in an effort to make this -fno-common clean. (diff) | |
download | wireguard-openbsd-afd6e24d406ea0b10eba2ded44ba424e469d8431.tar.xz wireguard-openbsd-afd6e24d406ea0b10eba2ded44ba424e469d8431.zip |
Remove c++ comment that snuck in and remove useless debug output.
-rw-r--r-- | sbin/unwind/unwind.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sbin/unwind/unwind.c b/sbin/unwind/unwind.c index c161401cded..66866395667 100644 --- a/sbin/unwind/unwind.c +++ b/sbin/unwind/unwind.c @@ -1,4 +1,4 @@ -/* $OpenBSD: unwind.c,v 1.53 2021/01/12 16:40:33 florian Exp $ */ +/* $OpenBSD: unwind.c,v 1.54 2021/01/18 15:26:04 florian Exp $ */ /* * Copyright (c) 2018 Florian Obser <florian@openbsd.org> @@ -830,8 +830,7 @@ open_ports(void) if ((udp4sock == -1 || tcp4sock == -1) && (udp6sock == -1 || tcp6sock == -1)) - //fatalx("could not bind to 127.0.0.1 or ::1 on port 53"); - fatalx("could not bind to 127.0.0.1 or ::1 on port 53 %d %d %d %d", udp4sock, tcp4sock, udp6sock, tcp6sock); + fatalx("could not bind to 127.0.0.1 or ::1 on port 53"); if (udp4sock != -1) main_imsg_compose_frontend_fd(IMSG_UDP4SOCK, 0, udp4sock); |