summaryrefslogtreecommitdiffstats
path: root/contrib/ipfilter/ipsend
diff options
context:
space:
mode:
authorguido <guido@FreeBSD.org>2000-01-13 18:30:37 +0000
committerguido <guido@FreeBSD.org>2000-01-13 18:30:37 +0000
commit60ab23b038d524a65b7130ac14b29bfc70fc0b6e (patch)
tree4f56f6055c220087d5c3efb74b6ae7c2f792c11e /contrib/ipfilter/ipsend
parentd44028c3f598470a1328b216d5c052763d2cf945 (diff)
parentc3aa6ac872203077a6f4cd5b2ff64081364914b9 (diff)
downloadFreeBSD-src-60ab23b038d524a65b7130ac14b29bfc70fc0b6e.zip
FreeBSD-src-60ab23b038d524a65b7130ac14b29bfc70fc0b6e.tar.gz
This commit was generated by cvs2svn to compensate for changes in r55924,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/ipfilter/ipsend')
-rw-r--r--contrib/ipfilter/ipsend/iptest.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/contrib/ipfilter/ipsend/iptest.c b/contrib/ipfilter/ipsend/iptest.c
index c1f42d2..3a0e39a 100644
--- a/contrib/ipfilter/ipsend/iptest.c
+++ b/contrib/ipfilter/ipsend/iptest.c
@@ -12,13 +12,14 @@
*/
#if !defined(lint)
static const char sccsid[] = "%W% %G% (C)1995 Darren Reed";
-static const char rcsid[] = "@(#)$Id: iptest.c,v 2.1 1999/08/04 17:31:08 darrenr Exp $";
+static const char rcsid[] = "@(#)$Id: iptest.c,v 2.1.2.2 1999/11/28 03:43:45 darrenr Exp $";
#endif
#include <stdio.h>
#include <netdb.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
+#include <sys/param.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/socket.h>
@@ -97,7 +98,8 @@ char **argv;
struct tcpiphdr *ti;
struct in_addr gwip;
ip_t *ip;
- char *name = argv[0], host[64], *gateway = NULL, *dev = NULL;
+ char *name = argv[0], host[MAXHOSTNAMELEN + 1];
+ char *gateway = NULL, *dev = NULL;
char *src = NULL, *dst;
int mtu = 1500, tests = 0, pointtest = 0, c;
@@ -153,6 +155,7 @@ char **argv;
if (!src)
{
gethostname(host, sizeof(host));
+ host[sizeof(host) - 1] = '\0';
src = host;
}
OpenPOWER on IntegriCloud