Skip to content

Commit

Permalink
Fix a typo (sigh, using both "p" and "handle" for the pcap_t pointer in
Browse files Browse the repository at this point in the history
different modules can lead to confusion).
  • Loading branch information
yuguy committed Apr 14, 2008
1 parent 2527d1a commit f35ab11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pcap-linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

/*
Expand Down Expand Up @@ -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);
}

/*
Expand Down

0 comments on commit f35ab11

Please sign in to comment.