aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/wall
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2015-08-04 02:56:31 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2015-08-04 02:56:31 +0000
commita8126b4c70b3da3cc3776a59ff797cf2044e014d (patch)
tree4f57b1da577cca10fe8ad2d1dbd95b98bd68a8bb /usr.bin/wall
parentc1f70e37472190afea47842e2067b1bb52725abf (diff)
downloadsrc-a8126b4c70b3da3cc3776a59ff797cf2044e014d.tar.gz
src-a8126b4c70b3da3cc3776a59ff797cf2044e014d.zip
Revert r286144 leaving the original fix to the buffer overflow.
Some developers consider the new code unnecessarily obfuscated. There was also a benign off-by-one. Discussed with: bde, vangyzen, jmallett
Notes
Notes: svn path=/head/; revision=286268
Diffstat (limited to 'usr.bin/wall')
-rw-r--r--usr.bin/wall/ttymsg.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/wall/ttymsg.c b/usr.bin/wall/ttymsg.c
index afa3d266ad3a..1317a4b0cb60 100644
--- a/usr.bin/wall/ttymsg.c
+++ b/usr.bin/wall/ttymsg.c
@@ -62,7 +62,7 @@ ttymsg(struct iovec *iov, int iovcnt, const char *line, int tmout)
struct iovec localiov[7];
ssize_t left, wret;
int cnt, fd;
- char device[MAXNAMLEN];
+ char device[MAXNAMLEN] = _PATH_DEV;
static char errbuf[1024];
char *p;
int forked;
@@ -71,9 +71,8 @@ ttymsg(struct iovec *iov, int iovcnt, const char *line, int tmout)
if (iovcnt > (int)(sizeof(localiov) / sizeof(localiov[0])))
return ("too many iov's (change code in wall/ttymsg.c)");
- strlcpy(device, _PATH_DEV, sizeof(device));
+ strlcat(device, line, sizeof(device));
p = device + sizeof(_PATH_DEV) - 1;
- strlcpy(p, line, sizeof(device) - sizeof(_PATH_DEV));
if (strncmp(p, "pts/", 4) == 0)
p += 4;
if (strchr(p, '/') != NULL) {