1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-20 22:49:01 +00:00

Fix SO_BINDTODEVICE Nsock error message.

This commit is contained in:
david
2012-11-16 21:02:54 +00:00
parent 89d84932de
commit 8dd3a8a66e

View File

@@ -108,7 +108,7 @@ static int nsock_make_socket(mspool *ms, msiod *iod, int family, int type, int p
errno = 0; errno = 0;
if (setsockopt(iod->sd, SOL_SOCKET, SO_BINDTODEVICE, ms->device, strlen(ms->device) + 1) == -1) { if (setsockopt(iod->sd, SOL_SOCKET, SO_BINDTODEVICE, ms->device, strlen(ms->device) + 1) == -1) {
if ((errno != EPERM && ms->tracelevel > 0) || ms->tracelevel > 5) if ((errno != EPERM && ms->tracelevel > 0) || ms->tracelevel > 5)
nsock_trace(ms, "Setting of SO_BROADCAST failed (IOD #%li)", iod->id); nsock_trace(ms, "Setting of SO_BINDTODEVICE failed (IOD #%li)", iod->id);
} }
#endif #endif
} }