From f1388717af1b7113f77b62f6a4add04904f6e96f Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Wed, 11 Aug 2021 12:19:30 +0200 Subject: [PATCH] miniupnpd.c: fix 1aa46b5a2c71578d63f836c446686c3bc7316733 --- miniupnpd/miniupnpd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miniupnpd/miniupnpd.c b/miniupnpd/miniupnpd.c index 7ecb1a6..f17830c 100644 --- a/miniupnpd/miniupnpd.c +++ b/miniupnpd/miniupnpd.c @@ -1818,9 +1818,9 @@ init(int argc, char * * argv, struct runtime_vars * v) if(!ext_if_name || !lan_addrs.lh_first) { /* bad configuration */ if(!ext_if_name) - INIT_PRINT_ERR(stderr, "Error: Option -i missing and ext_ifname is not set in config file\n"); + INIT_PRINT_ERR("Error: Option -i missing and ext_ifname is not set in config file\n"); if (!lan_addrs.lh_first) - INIT_PRINT_ERR(stderr, "Error: Option -a missing and listening_ip is not set in config file\n"); + INIT_PRINT_ERR("Error: Option -a missing and listening_ip is not set in config file\n"); goto print_usage; }