summaryrefslogtreecommitdiff
path: root/bpf.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>1996-05-22 08:14:59 +0000
committerTed Lemon <source@isc.org>1996-05-22 08:14:59 +0000
commit939327b9b532a5e885aacb74bed78b82d137553c (patch)
tree523c2ac7f88f3550a3232250915c6546db91b911 /bpf.c
parentf4e348de94aadd1868e665692c337750a96d237a (diff)
downloadisc-dhcp-939327b9b532a5e885aacb74bed78b82d137553c.tar.gz
Don't print interface network name if there's no network structure
Diffstat (limited to 'bpf.c')
-rw-r--r--bpf.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/bpf.c b/bpf.c
index 7e3f6610..dd773f38 100644
--- a/bpf.c
+++ b/bpf.c
@@ -115,7 +115,8 @@ void if_register_send (info, interface)
print_hw_addr (info -> hw_address.htype,
info -> hw_address.hlen,
info -> hw_address.haddr),
- info -> shared_network -> name);
+ (info -> shared_network ?
+ info -> shared_network -> name : "unattached"));
}
#endif /* USE_BPF_SEND */
@@ -213,7 +214,8 @@ void if_register_receive (info, interface)
print_hw_addr (info -> hw_address.htype,
info -> hw_address.hlen,
info -> hw_address.haddr),
- info -> shared_network -> name);
+ (info -> shared_network ?
+ info -> shared_network -> name : "unattached"));
}
#endif /* USE_BPF_RECEIVE */