From f35ab115a60de968f27eb2ec95a8b85b58c22007 Mon Sep 17 00:00:00 2001 From: guy Date: Mon, 14 Apr 2008 21:04:51 +0000 Subject: [PATCH] Fix a typo (sigh, using both "p" and "handle" for the pcap_t pointer in different modules can lead to confusion). --- pcap-linux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcap-linux.c b/pcap-linux.c index 6ab894234f..07025b086a 100644 --- a/pcap-linux.c +++ b/pcap-linux.c @@ -34,7 +34,7 @@ #ifndef lint static const char rcsid[] _U_ = - "@(#) $Header: /tcpdump/master/libpcap/pcap-linux.c,v 1.147 2008-04-14 20:40:58 guy Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/libpcap/pcap-linux.c,v 1.148 2008-04-14 21:04:51 guy Exp $ (LBL)"; #endif /* @@ -471,7 +471,7 @@ static void pcap_cleanup_linux( pcap_t *handle ) free(handle->md.device); handle->md.device = NULL; } - pcap_cleanup_live_common(p); + pcap_cleanup_live_common(handle); } /*