diff options
author | Telire Barry <t.barry@alphalink.fr> | 2022-06-24 11:27:47 +0200 |
---|---|---|
committer | Telire Barry <t.barry@alphalink.fr> | 2022-07-05 10:22:26 +0200 |
commit | a184c94f3f8c8e8bc56ebd9527646567a06e8e59 (patch) | |
tree | 8e1cd679961f2078afeeb47ebc00e494c8780f10 /accel-pppd | |
parent | 26270ec4e1057977be1e45da1c86217e1b6357f6 (diff) | |
download | accel-ppp-a184c94f3f8c8e8bc56ebd9527646567a06e8e59.tar.gz accel-ppp-a184c94f3f8c8e8bc56ebd9527646567a06e8e59.zip |
ipv6_dhcp:change log message with appropriate file name
This commit proposes to modify the log message in dhcpv6.c to include
the correct file name. It avoids confusion when reading the logs
Diffstat (limited to 'accel-pppd')
-rw-r--r-- | accel-pppd/ipv6/dhcpv6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel-pppd/ipv6/dhcpv6.c b/accel-pppd/ipv6/dhcpv6.c index 0a0a2c1..12701ce 100644 --- a/accel-pppd/ipv6/dhcpv6.c +++ b/accel-pppd/ipv6/dhcpv6.c @@ -88,7 +88,7 @@ static void ev_ses_started(struct ap_session *ses) net->setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &f, sizeof(f)); if (net->setsockopt(sock, SOL_SOCKET, SO_BINDTODEVICE, ses->ifname, strlen(ses->ifname))) { - log_ppp_error("ipv6_nd: setsockopt(SO_BINDTODEVICE): %s\n", strerror(errno)); + log_ppp_error("dhcpv6: setsockopt(SO_BINDTODEVICE): %s\n", strerror(errno)); close(sock); return; } |