]> The Tcpdump Group git mirrors - libpcap/commitdiff
Fix typoes (sigh, using both "p" and "handle" for the pcap_t pointer in
authorguy <guy>
Mon, 14 Apr 2008 21:06:09 +0000 (21:06 +0000)
committerguy <guy>
Mon, 14 Apr 2008 21:06:09 +0000 (21:06 +0000)
different modules can lead to confusion).

pcap-bt-linux.c
pcap-usb-linux.c

index d8227b447f1de2fd16e08c66f40d3625c5d2fe9d..2ccbd4cb54081660d76b9578a162e520e1599337 100644 (file)
@@ -33,7 +33,7 @@
  */
 #ifndef lint
 static const char rcsid[] _U_ =
-    "@(#) $Header: /tcpdump/master/libpcap/pcap-bt-linux.c,v 1.13 2008-04-14 20:40:58 guy Exp $ (LBL)";
+    "@(#) $Header: /tcpdump/master/libpcap/pcap-bt-linux.c,v 1.14 2008-04-14 21:07:50 guy Exp $ (LBL)";
 #endif
  
 #ifdef HAVE_CONFIG_H
@@ -231,7 +231,7 @@ bt_activate(pcap_t* handle)
                goto close_fail;
        }
 
-       if (p->opt.rfmon) {
+       if (handle->opt.rfmon) {
                /*
                 * Monitor mode doesn't apply to Bluetooth devices.
                 */
@@ -256,7 +256,7 @@ bt_activate(pcap_t* handle)
        return 0;
 
 close_fail:
-       pcap_cleanup_live_common(p);
+       pcap_cleanup_live_common(handle);
        return err;
 }
 
index 98bc16ca68bdfd7a3f5ebd2ad612a49a08a6f29a..f6dc7057c0463767b246002f990071a8a704d3e3 100644 (file)
@@ -34,7 +34,7 @@
  */
 #ifndef lint
 static const char rcsid[] _U_ =
-    "@(#) $Header: /tcpdump/master/libpcap/pcap-usb-linux.c,v 1.23 2008-04-14 20:40:58 guy Exp $ (LBL)";
+    "@(#) $Header: /tcpdump/master/libpcap/pcap-usb-linux.c,v 1.24 2008-04-14 21:06:09 guy Exp $ (LBL)";
 #endif
  
 #ifdef HAVE_CONFIG_H
@@ -226,7 +226,7 @@ usb_activate(pcap_t* handle)
        handle->fd = open(full_path, O_RDONLY, 0);
        if (handle->fd >= 0)
        {
-               if (p->opt.rfmon) {
+               if (handle->opt.rfmon) {
                        /*
                         * Monitor mode doesn't apply to USB devices.
                         */
@@ -266,7 +266,7 @@ usb_activate(pcap_t* handle)
                handle->read_op = usb_read_linux;
        }
 
-       if (p->opt.rfmon) {
+       if (handle->opt.rfmon) {
                /*
                 * Monitor mode doesn't apply to USB devices.
                 */