diff options
author | 1996-12-16 14:54:12 +0000 | |
---|---|---|
committer | 1996-12-16 14:54:12 +0000 | |
commit | cf57cbe19bd5b7ee593509263ed89cc5ff07ce17 (patch) | |
tree | db3d2fee9591e507be3ebdda6966c6708ae64103 | |
parent | uiomove not checked for failure; wpaul@skynet.ctr.columbia.edu (diff) | |
download | wireguard-openbsd-cf57cbe19bd5b7ee593509263ed89cc5ff07ce17.tar.xz wireguard-openbsd-cf57cbe19bd5b7ee593509263ed89cc5ff07ce17.zip |
yet another strncat botch
-rw-r--r-- | libexec/getty/subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/getty/subr.c b/libexec/getty/subr.c index 114647f5482..4a1cd11b5e0 100644 --- a/libexec/getty/subr.c +++ b/libexec/getty/subr.c @@ -33,7 +33,7 @@ #ifndef lint /*static char sccsid[] = "from: @(#)subr.c 8.1 (Berkeley) 6/4/93";*/ -static char rcsid[] = "$Id: subr.c,v 1.3 1996/08/31 09:53:42 deraadt Exp $"; +static char rcsid[] = "$Id: subr.c,v 1.4 1996/12/16 14:54:12 deraadt Exp $"; #endif /* not lint */ /* @@ -604,7 +604,7 @@ makeenv(env) ep = env; if (TT && *TT) { - strncat(termbuf, TT, sizeof(termbuf)-1); + strncat(termbuf, TT, sizeof(termbuf)-strlen(termbuf)-1); termbuf[sizeof(termbuf)-1] = '\0'; *ep++ = termbuf; } |