2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 14:25:41 +00:00

Another fussy interface announcement change

This commit is contained in:
Ted Lemon
1996-05-16 07:45:14 +00:00
parent e41d835013
commit 7e7af53b9b
2 changed files with 8 additions and 8 deletions

8
bpf.c
View File

@@ -107,8 +107,8 @@ void if_register_send (info, interface)
#else
info -> wfdesc = info -> rfdesc;
#endif
note ("Sending on BPF/%s",
piaddr (info -> address));
note ("Sending on BPF/%s/%s",
info -> name, piaddr (info -> address));
}
#endif /* USE_BPF_SEND */
@@ -201,8 +201,8 @@ void if_register_receive (info, interface)
if (ioctl (info -> rfdesc, BIOCSETF, &p) < 0)
error ("Can't install packet filter program: %m");
note ("Listening on BPF/%s",
piaddr (info -> address));
note ("Listening on BPF/%s/%s",
info -> name, piaddr (info -> address));
}
#endif /* USE_BPF_RECEIVE */

View File

@@ -107,8 +107,8 @@ void if_register_send (info, interface)
#else
info -> wfdesc = info -> rfdesc;
#endif
note ("Sending on BPF/%s",
piaddr (info -> address));
note ("Sending on BPF/%s/%s",
info -> name, piaddr (info -> address));
}
#endif /* USE_BPF_SEND */
@@ -201,8 +201,8 @@ void if_register_receive (info, interface)
if (ioctl (info -> rfdesc, BIOCSETF, &p) < 0)
error ("Can't install packet filter program: %m");
note ("Listening on BPF/%s",
piaddr (info -> address));
note ("Listening on BPF/%s/%s",
info -> name, piaddr (info -> address));
}
#endif /* USE_BPF_RECEIVE */