diff options
author | 2003-04-05 14:42:11 +0000 | |
---|---|---|
committer | 2003-04-05 14:42:11 +0000 | |
commit | 3ffdcb0730728d470eb10c21756f959875dba30c (patch) | |
tree | 03ccf38f2656e56cee830906ea2adf2aa54d2fd3 | |
parent | snprintf (diff) | |
download | wireguard-openbsd-3ffdcb0730728d470eb10c21756f959875dba30c.tar.xz wireguard-openbsd-3ffdcb0730728d470eb10c21756f959875dba30c.zip |
say goodbye to strcpy, okay deraadt@
-rw-r--r-- | usr.bin/m4/eval.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/m4/eval.c b/usr.bin/m4/eval.c index 951863936a4..6fc972c6a8d 100644 --- a/usr.bin/m4/eval.c +++ b/usr.bin/m4/eval.c @@ -1,4 +1,4 @@ -/* $OpenBSD: eval.c,v 1.45 2002/04/28 14:37:12 espie Exp $ */ +/* $OpenBSD: eval.c,v 1.46 2003/04/05 14:42:11 espie Exp $ */ /* $NetBSD: eval.c,v 1.7 1996/11/10 21:21:29 pk Exp $ */ /* @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)eval.c 8.2 (Berkeley) 4/27/95"; #else -static char rcsid[] = "$OpenBSD: eval.c,v 1.45 2002/04/28 14:37:12 espie Exp $"; +static char rcsid[] = "$OpenBSD: eval.c,v 1.46 2003/04/05 14:42:11 espie Exp $"; #endif #endif /* not lint */ @@ -799,7 +799,7 @@ dochq(const char *argv[], int argc) if (*argv[3]) strlcpy(rquote, argv[3], sizeof(rquote)); } else - strcpy(rquote, lquote); + strlcpy(rquote, lquote, sizeof(rquote)); } else { lquote[0] = LQUOTE, lquote[1] = EOS; rquote[0] = RQUOTE, rquote[1] = EOS; |