Fix typos

This commit is contained in:
Brenton Bostick 2023-08-01 11:16:06 -04:00
parent 230ae6bd16
commit a59b95df60
4 changed files with 5 additions and 5 deletions

View file

@ -546,7 +546,7 @@ void LinuxNetLink::_requestIPv4Routes()
la.nl_pid = 0; //getpid();
la.nl_groups = RTMGRP_IPV4_ROUTE;
if(bind(fd, (struct sockaddr*)&la, sizeof(la))) {
fprintf(stderr, "Error binding RTNETLINK (_requiestIPv4Routes #1): %s\n", strerror(errno));
fprintf(stderr, "Error binding RTNETLINK (_requestIPv4Routes #1): %s\n", strerror(errno));
close(fd);
return;
}