diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-03-11 02:32:32 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-03-11 02:32:32 +0000 |
commit | 8524f64196f2ba2661a0869c05109580b10ad62f (patch) | |
tree | dd837bdce198f6e67a7f3c4e305b42704505e992 /sbin/route | |
parent | 67638b1fc31d9cb577e822fcc385b0a5b6b5f221 (diff) |
strcpy -> strlcpy; Hans-Joerg.Hoexer@yerbouti.franken.de
Diffstat (limited to 'sbin/route')
-rw-r--r-- | sbin/route/route.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/route/route.c b/sbin/route/route.c index 6f239e6882e..91b81cf0fe2 100644 --- a/sbin/route/route.c +++ b/sbin/route/route.c @@ -1,4 +1,4 @@ -/* $OpenBSD: route.c,v 1.54 2003/01/31 17:51:16 millert Exp $ */ +/* $OpenBSD: route.c,v 1.55 2003/03/11 02:32:31 deraadt Exp $ */ /* $NetBSD: route.c,v 1.16 1996/04/15 18:27:05 cgd Exp $ */ /* @@ -44,7 +44,7 @@ static const char copyright[] = #if 0 static const char sccsid[] = "@(#)route.c 8.3 (Berkeley) 3/19/94"; #else -static const char rcsid[] = "$OpenBSD: route.c,v 1.54 2003/01/31 17:51:16 millert Exp $"; +static const char rcsid[] = "$OpenBSD: route.c,v 1.55 2003/03/11 02:32:31 deraadt Exp $"; #endif #endif /* not lint */ @@ -372,14 +372,14 @@ routename(struct sockaddr *sa) first = 0; if (gethostname(domain, sizeof domain) == 0 && (cp = strchr(domain, '.'))) - (void) strcpy(domain, cp + 1); + (void) strlcpy(domain, cp + 1, sizeof domain); else domain[0] = 0; cp = NULL; } if (sa->sa_len == 0) - strcpy(line, "default"); + (void) strlcpy(line, "default", sizeof line); else switch (sa->sa_family) { case AF_INET: |