summaryrefslogtreecommitdiff
path: root/networking/ping.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/ping.c')
-rw-r--r--networking/ping.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ping.c b/networking/ping.c
index 01a9f9ac5..f2a612fde 100644
--- a/networking/ping.c
+++ b/networking/ping.c
@@ -572,7 +572,7 @@ static void ping4(len_and_sockaddr *lsa)
572 xbind(pingsock, &source_lsa->u.sa, source_lsa->len); 572 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
573 } 573 }
574 if (str_I) 574 if (str_I)
575 setsockopt(pingsock, SOL_SOCKET, SO_BINDTODEVICE, str_I, strlen(str_I) + 1); 575 setsockopt_bindtodevice(pingsock, str_I);
576 576
577 /* enable broadcast pings */ 577 /* enable broadcast pings */
578 setsockopt_broadcast(pingsock); 578 setsockopt_broadcast(pingsock);
@@ -622,7 +622,7 @@ static void ping6(len_and_sockaddr *lsa)
622 if (source_lsa) 622 if (source_lsa)
623 xbind(pingsock, &source_lsa->u.sa, source_lsa->len); 623 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
624 if (str_I) 624 if (str_I)
625 setsockopt(pingsock, SOL_SOCKET, SO_BINDTODEVICE, str_I, strlen(str_I) + 1); 625 setsockopt_bindtodevice(pingsock, str_I);
626 626
627#ifdef ICMP6_FILTER 627#ifdef ICMP6_FILTER
628 { 628 {