]> The Tcpdump Group git mirrors - libpcap/commitdiff
Cut-and-pasteo fix, from Greg Stark <[email protected]>.
authorguy <guy>
Fri, 12 Jul 2002 07:51:15 +0000 (07:51 +0000)
committerguy <guy>
Fri, 12 Jul 2002 07:51:15 +0000 (07:51 +0000)
CREDITS
pcap-linux.c

diff --git a/CREDITS b/CREDITS
index efa329dafc0aaceddd6501d09023983266b56d9b..64eba08436f6727b5d706c1dddf655ffb226c3c7 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -22,6 +22,7 @@ Additional people who have contributed patches:
        David Kaelbling                 <[email protected]>
        Franz Schaefer                  <[email protected]>
        Graeme Hewson                   <[email protected]>
+       Greg Stark                      <[email protected]>
        Greg Troxel                     <[email protected]>
        Hyung Sik Yoon                  <[email protected]>
        Igor Khristophorov              <[email protected]>
index f5afcca4740e800cdfd873305046b52dcdbeff10..fb86388f48088c35ef38a50266f623c8847c24e5 100644 (file)
@@ -26,7 +26,7 @@
  */
 #ifndef lint
 static const char rcsid[] =
-    "@(#) $Header: /tcpdump/master/libpcap/pcap-linux.c,v 1.83 2002-07-11 09:06:38 guy Exp $ (LBL)";
+    "@(#) $Header: /tcpdump/master/libpcap/pcap-linux.c,v 1.84 2002-07-12 07:51:15 guy Exp $ (LBL)";
 #endif
 
 /*
@@ -744,7 +744,7 @@ static const char any_descr[] = "Pseudo-device that captures on all interfaces";
 int
 pcap_platform_finddevs(pcap_if_t **alldevsp, char *errbuf)
 {
-       if (pcap_add_if(&devlist, "any", 0, any_descr, errbuf) < 0)
+       if (pcap_add_if(alldevsp, "any", 0, any_descr, errbuf) < 0)
                return (-1);
 
        return (0);