summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>1996-05-16 07:43:43 +0000
committerTed Lemon <source@isc.org>1996-05-16 07:43:43 +0000
commite41d8350132c51ce1be1d889db17a710a55cf78a (patch)
tree9050086321ccd62afb3614e27d3c333d039a789f /common
parent66d9a2662244ac269b6a2036d7e1161e97bdbfab (diff)
downloadisc-dhcp-e41d8350132c51ce1be1d889db17a710a55cf78a.tar.gz
Undo interface attach announcement changes
Diffstat (limited to 'common')
-rw-r--r--common/bpf.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/common/bpf.c b/common/bpf.c
index 702101a0..63f2279b 100644
--- a/common/bpf.c
+++ b/common/bpf.c
@@ -107,10 +107,7 @@ void if_register_send (info, interface)
#else
info -> wfdesc = info -> rfdesc;
#endif
- note ("Sending on BPF/%s/%s",
- print_hw_addr (info -> hw_address.htype,
- info -> hw_address.hlen,
- info -> hw_address.haddr),
+ note ("Sending on BPF/%s",
piaddr (info -> address));
}
#endif /* USE_BPF_SEND */
@@ -204,10 +201,7 @@ 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/%s",
- print_hw_addr (info -> hw_address.htype,
- info -> hw_address.hlen,
- info -> hw_address.haddr),
+ note ("Listening on BPF/%s",
piaddr (info -> address));
}
#endif /* USE_BPF_RECEIVE */