Re: write.c patch

2001-12-07 Thread David Hill
On Mon, 3 Dec 2001 17:48:43 + David Hill [EMAIL PROTECTED] wrote: This patch was done on -CURRENT. It is both pasted and attached to this message. Thanks David --- write.c.origMon Dec 3 17:42:45 2001 +++ write.c Mon Dec 3 17:45:22 2001 @@ -190,8 +190,7 @@

write.c patch

2001-12-03 Thread David Hill
This patch was done on -CURRENT. It is both pasted and attached to this message. Thanks David --- write.c.origMon Dec 3 17:42:45 2001 +++ write.c Mon Dec 3 17:45:22 2001 @@ -190,8 +190,7 @@ while (read(ufd, (char *) u, sizeof(u)) == sizeof(u)) if

Re: write.c patch

2001-12-03 Thread Alfred Perlstein
* David Hill [EMAIL PROTECTED] [011203 16:50] wrote: This patch was done on -CURRENT. It is both pasted and attached to this message. Which write.c is this to be applied to? To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-current in the body of the message

Re: write.c patch

2001-12-03 Thread David Hill
On Mon, 3 Dec 2001 17:29:32 -0600 Alfred Perlstein [EMAIL PROTECTED] wrote: * David Hill [EMAIL PROTECTED] [011203 16:50] wrote: This patch was done on -CURRENT. It is both pasted and attached to this message. Which write.c is this to be applied to? To Unsubscribe: send mail to

Re: write.c patch (WARNS 2)

2001-08-13 Thread David Hill
On Fri, 10 Aug 2001 23:06:49 -0400 David Hill [EMAIL PROTECTED] wrote: Hello - Here is my patch to make write.c work when WARNS=2. I also did some code cleanup 1. Constify 2. Changed a strncpy to strlcpy 3. Changed (S_IWRITE 3) to S_IWGRP 4. Cleaned up 2

usr.bin/write/write.c patch

2001-07-20 Thread David Hill
Hello - I patched up write.c a bit. 1. Constified 2. Changed a strncpy to strlcpy 3. change S_IWRITE 3 to S_IWGRP 4. Changed fileno(stdin/stdout/stderr) to STD*_FILENO 5. cleaned up 2 pieces of code so it will compile when WARNS=2 is set.