From b19b72ce32591862fc4424eb3d92ce13c582c848 Mon Sep 17 00:00:00 2001 From: cognet Date: Wed, 5 Jan 2005 11:52:40 +0000 Subject: [PATCH] Fix a typo in comment. Reviewed by: mux (mentor) --- usr.bin/write/write.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/write/write.c b/usr.bin/write/write.c index ca8210c9b28f..b0e0a1f91b8d 100644 --- a/usr.bin/write/write.c +++ b/usr.bin/write/write.c @@ -256,7 +256,7 @@ do_write(char *tty, char *mytty, uid_t myuid) time_t now; char path[MAXPATHLEN], host[MAXHOSTNAMELEN], line[512]; - /* Determine our login name before the we reopen() stdout */ + /* Determine our login name before we reopen() stdout */ if ((login = getlogin()) == NULL) { if ((pwd = getpwuid(myuid))) login = pwd->pw_name;