This commit was generated by cvs2svn to compensate for changes in r63696,

which included commits to RCS files with non-trunk default branches.
This commit is contained in:
Bill Fenner 2000-07-20 21:26:45 +00:00
commit c231f6de29

View File

@ -33,7 +33,7 @@
#ifndef lint
static const char rcsid[] =
"@(#) $Header: /tcpdump/master/libpcap/inet.c,v 1.24.2.1 2000/01/14 18:00:50 mcr Exp $ (LBL)";
"@(#) $Header: /tcpdump/master/libpcap/inet.c,v 1.26 2000/01/14 23:55:31 mcr Exp $ (LBL)";
#endif
#include <sys/param.h>
@ -173,15 +173,16 @@ pcap_lookupdev(errbuf)
mp = ifrp;
}
}
free(buf);
(void)close(fd);
if (mp == NULL) {
(void)strcpy(errbuf, "no suitable device found");
free(buf);
return (NULL);
}
(void)strncpy(device, mp->ifr_name, sizeof(device) - 1);
device[sizeof(device) - 1] = '\0';
free(buf);
return (device);
}