diff options
author | Ted Lemon <source@isc.org> | 1996-05-22 08:14:59 +0000 |
---|---|---|
committer | Ted Lemon <source@isc.org> | 1996-05-22 08:14:59 +0000 |
commit | 939327b9b532a5e885aacb74bed78b82d137553c (patch) | |
tree | 523c2ac7f88f3550a3232250915c6546db91b911 /common/bpf.c | |
parent | f4e348de94aadd1868e665692c337750a96d237a (diff) | |
download | isc-dhcp-939327b9b532a5e885aacb74bed78b82d137553c.tar.gz |
Don't print interface network name if there's no network structure
Diffstat (limited to 'common/bpf.c')
-rw-r--r-- | common/bpf.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/common/bpf.c b/common/bpf.c index 7e3f6610..dd773f38 100644 --- a/common/bpf.c +++ b/common/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 */ |