dect
/
libpcap
Archived
13
0
Fork 0

Don't define pcap_stream_err() if we're not going to use it.

This commit is contained in:
Guy Harris 2009-06-29 00:50:19 -07:00
parent 8356bb5310
commit 6b89856c15
1 changed files with 4 additions and 0 deletions

View File

@ -69,7 +69,9 @@ static const char rcsid[] _U_ =
#include "pcap-int.h"
#include "dlpisubs.h"
#ifdef HAVE_SYS_BUFMOD_H
static void pcap_stream_err(const char *, int, char *);
#endif
/*
* Get the packet statistics.
@ -344,6 +346,7 @@ strioctl(int fd, int cmd, int len, char *dp)
return (str.ic_len);
}
#ifdef HAVE_SYS_BUFMOD_H
/*
* Write stream error message to errbuf.
*/
@ -352,3 +355,4 @@ pcap_stream_err(const char *func, int err, char *errbuf)
{
snprintf(errbuf, PCAP_ERRBUF_SIZE, "%s: %s", func, pcap_strerror(err));
}
#endif