diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-22 06:46:37 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-22 06:46:37 +0000 |
commit | 049107bc983b7e45fbdde3e86430b4c0fe677516 (patch) | |
tree | 15459dff3a37b5d4b837d017ac5aa13c6abe919c /usr.bin/w | |
parent | c8d332cdd9dae369f84747dc570b442155428824 (diff) |
deal with argument snip
Diffstat (limited to 'usr.bin/w')
-rw-r--r-- | usr.bin/w/w.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/w/w.c b/usr.bin/w/w.c index fd0c0c4be18..5b0f968939f 100644 --- a/usr.bin/w/w.c +++ b/usr.bin/w/w.c @@ -1,4 +1,4 @@ -/* $OpenBSD: w.c,v 1.8 1996/08/22 02:16:01 downsj Exp $ */ +/* $OpenBSD: w.c,v 1.9 1996/08/22 06:46:36 deraadt Exp $ */ /*- * Copyright (c) 1980, 1991, 1993, 1994 @@ -340,7 +340,7 @@ pr_args(kp) if (kp == 0) goto nothing; left = argwidth; - argv = kvm_getargv(kd, kp, argwidth); + argv = kvm_getargv(kd, kp, argwidth+60); /*+60 for ftpd snip */ if (argv == 0) goto nothing; |