summaryrefslogtreecommitdiff
path: root/sbin/unwind
diff options
context:
space:
mode:
authorFlorian Obser <florian@cvs.openbsd.org>2021-01-18 15:26:05 +0000
committerFlorian Obser <florian@cvs.openbsd.org>2021-01-18 15:26:05 +0000
commita7ffe43381b33544783afadaa916ec94cd4b5008 (patch)
tree37f367fdbbe85f1d689a0a6126f16e4aaea3b522 /sbin/unwind
parent10bb7273836915cb412fbe9dc07b0a608c2809ce (diff)
Remove c++ comment that snuck in and remove useless debug output.
Diffstat (limited to 'sbin/unwind')
-rw-r--r--sbin/unwind/unwind.c5
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);