diff options
Diffstat (limited to 'pcap-dag.c')
-rw-r--r-- | pcap-dag.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1360,12 +1360,14 @@ pcap_create_interface(const char *device, char *errbuf) return NULL; } +#include "pcap_version.h" + /* - * Platform-specific information. + * Libpcap version string. */ const char * -pcap_platform_lib_version(void) +pcap_lib_version(void) { - return ("DAG-only"); + return (PCAP_VERSION_STRING " (DAG-only)"); } #endif |