diff options
author | guy <guy> | 2002-08-03 20:22:27 +0000 |
---|---|---|
committer | guy <guy> | 2002-08-03 20:22:27 +0000 |
commit | 1b05b89228d9052d679f7951754d5b9a543b6825 (patch) | |
tree | 00e177cfa7a7874c50c3927ee805cd98f372a977 | |
parent | 88ff6e1792d3de4fe7140ac62fdbabadf9fc56e4 (diff) |
The genius who checked in the previous change removed a comma after a
format string.
-rw-r--r-- | pcap-pf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -24,7 +24,7 @@ #ifndef lint static const char rcsid[] = - "@(#) $Header: /tcpdump/master/libpcap/pcap-pf.c,v 1.68 2002-08-02 03:28:05 guy Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/libpcap/pcap-pf.c,v 1.69 2002-08-03 20:22:27 guy Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -256,7 +256,7 @@ pcap_open_live(char *device, int snaplen, int promisc, int to_ms, char *ebuf) p->fd = pfopen(device, O_RDONLY); if (p->fd < 0) { snprintf(ebuf, PCAP_ERRBUF_SIZE, "pf open: %s: %s\n\ -your system may not be properly configured; see the packetfilter(4) man page\n" +your system may not be properly configured; see the packetfilter(4) man page\n", device, pcap_strerror(errno)); goto bad; } |