diff options
Diffstat (limited to 'pcap-null.c')
-rw-r--r-- | pcap-null.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pcap-null.c b/pcap-null.c index f72a0c3..2d271eb 100644 --- a/pcap-null.c +++ b/pcap-null.c @@ -20,7 +20,7 @@ */ #ifndef lint static const char rcsid[] _U_ = - "@(#) $Header: /tcpdump/master/libpcap/pcap-null.c,v 1.21.4.1 2008-04-04 19:39:06 guy Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/libpcap/pcap-null.c,v 1.22 2008-04-04 19:37:45 guy Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -40,9 +40,9 @@ static const char rcsid[] _U_ = static char nosup[] = "live packet capture not supported on this system"; pcap_t * -pcap_activate(pcap_t *p) +pcap_create(const char *device, char *ebuf) { - (void)strlcpy(p->errbuf, nosup, PCAP_ERRBUF_SIZE); + (void)strlcpy(ebuf, nosup, PCAP_ERRBUF_SIZE); return (NULL); } |