From 64df4c75189b42799f82a8d8816c7c55598d2b6e Mon Sep 17 00:00:00 2001 From: Stefan Berger Date: Mon, 3 Mar 2014 15:13:47 -0500 Subject: [PATCH] nwfilter: Display the pcap errror message Display the pcap error message in the log. Signed-off-by: Stefan Berger --- src/nwfilter/nwfilter_dhcpsnoop.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/nwfilter/nwfilter_dhcpsnoop.c b/src/nwfilter/nwfilter_dhcpsnoop.c index de9c33b60f..7cb0ac0773 100644 --- a/src/nwfilter/nwfilter_dhcpsnoop.c +++ b/src/nwfilter/nwfilter_dhcpsnoop.c @@ -1113,8 +1113,9 @@ virNWFilterSnoopDHCPOpen(const char *ifname, virMacAddr *mac, if (pcap_set_snaplen(handle, PCAP_PBUFSIZE) < 0 || pcap_set_buffer_size(handle, PCAP_BUFFERSIZE) < 0 || pcap_activate(handle) < 0) { - virReportError(VIR_ERR_INTERNAL_ERROR, "%s", - _("setup of pcap handle failed")); + virReportError(VIR_ERR_INTERNAL_ERROR, + _("setup of pcap handle failed: %s"), + pcap_geterr(handle)); goto cleanup; }