aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tap.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/tap.c')
-rw-r--r--epan/tap.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/epan/tap.c b/epan/tap.c
index ff51755067..5049d2ec3d 100644
--- a/epan/tap.c
+++ b/epan/tap.c
@@ -25,7 +25,6 @@
#include <epan/packet_info.h>
#include <epan/dfilter/dfilter.h>
#include <epan/tap.h>
-#include <wsutil/ws_printf.h> /* ws_g_warning */
static gboolean tapping_is_active=FALSE;
@@ -220,7 +219,7 @@ tap_queue_packet(int tap_id, packet_info *pinfo, const void *tap_specific_data)
* rather than having a fixed maximum number of entries?
*/
if(tap_packet_index >= TAP_PACKET_QUEUE_LEN){
- ws_g_warning("Too many taps queued");
+ g_warning("Too many taps queued");
return;
}
@@ -613,7 +612,7 @@ remove_tap_listener(void *tapdata)
}
if(!tl) {
- ws_g_warning("remove_tap_listener(): no listener found with that tap data");
+ g_warning("remove_tap_listener(): no listener found with that tap data");
return;
}
}