summaryrefslogtreecommitdiff
path: root/bpf.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>1996-05-16 07:45:14 +0000
committerTed Lemon <source@isc.org>1996-05-16 07:45:14 +0000
commit7e7af53b9be96cd0429f712f762585a6f4391936 (patch)
tree4b93259b06d0a0f74dfc8f6696135cd0b664b776 /bpf.c
parente41d8350132c51ce1be1d889db17a710a55cf78a (diff)
downloadisc-dhcp-7e7af53b9be96cd0429f712f762585a6f4391936.tar.gz
Another fussy interface announcement change
Diffstat (limited to 'bpf.c')
-rw-r--r--bpf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bpf.c b/bpf.c
index 63f2279b..7e6d4ac7 100644
--- a/bpf.c
+++ b/bpf.c
@@ -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 */