From f6b094c2165952417d228974326a57561954a5ae Mon Sep 17 00:00:00 2001 From: Jan Wolff Date: Mon, 4 Oct 2021 19:14:58 +0200 Subject: [PATCH] inet_aton -> inet_pton --- wakeup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wakeup.c b/wakeup.c index 01ae3af..62dbc16 100644 --- a/wakeup.c +++ b/wakeup.c @@ -28,7 +28,7 @@ int bcast_wakeup(const char* macAddr, const char* broadcast, in_port_t port) sizeof(opt_broadcast)); struct in_addr ip; - if (!inet_aton(broadcast, &ip)) { + if (!inet_pton(AF_INET, broadcast, &ip)) { fputs("could not parse broadcast IP address", stderr); exit(EXIT_FAILURE); }