Re: svn commit: r232183 - head/sys/kern

2012-02-28 Thread Alexander Best
On Sun Feb 26 12, Jilles Tjoelker wrote: Author: jilles Date: Sun Feb 26 15:14:29 2012 New Revision: 232183 URL: http://svn.freebsd.org/changeset/base/232183 Log: Fix fchmod() and fchown() on fifos. The new fifo implementation in r232055 broke fchmod() and fchown() on fifos.

Re: svn commit: r232183 - head/sys/kern

2012-02-28 Thread Bruce Evans
On Tue, 28 Feb 2012, Alexander Best wrote: On Sun Feb 26 12, Jilles Tjoelker wrote: Log: Fix fchmod() and fchown() on fifos. The new fifo implementation in r232055 broke fchmod() and fchown() on fifos. Postfix needs this. clang seems to have a problem with this commit:

svn commit: r232183 - head/sys/kern

2012-02-26 Thread Jilles Tjoelker
Author: jilles Date: Sun Feb 26 15:14:29 2012 New Revision: 232183 URL: http://svn.freebsd.org/changeset/base/232183 Log: Fix fchmod() and fchown() on fifos. The new fifo implementation in r232055 broke fchmod() and fchown() on fifos. Postfix needs this. Submitted by: gianni

Re: svn commit: r232183 - head/sys/kern

2012-02-26 Thread Giovanni Trematerra
On Sun, Feb 26, 2012 at 4:14 PM, Jilles Tjoelker jil...@freebsd.org wrote: Author: jilles Date: Sun Feb 26 15:14:29 2012 New Revision: 232183 URL: http://svn.freebsd.org/changeset/base/232183 Log:  Fix fchmod() and fchown() on fifos.  The new fifo implementation in r232055 broke fchmod()

Re: svn commit: r232183 - head/sys/kern

2012-02-26 Thread Ed Schouten
Hi Jilles, * Jilles Tjoelker jil...@freebsd.org, 20120226 16:14: +static int +pipe_chmod(fp, mode, active_cred, td) + struct file *fp; + mode_t mode; + struct ucred *active_cred; + struct thread *td; +{ + struct pipe *cpipe; + int error; + + cpipe =

Re: svn commit: r232183 - head/sys/kern

2012-02-26 Thread Giovanni Trematerra
On Sun, Feb 26, 2012 at 10:12 PM, Ed Schouten e...@80386.nl wrote: Hi Jilles, * Jilles Tjoelker jil...@freebsd.org, 20120226 16:14: +static int +pipe_chmod(fp, mode, active_cred, td) +     struct file *fp; +     mode_t mode; +     struct ucred *active_cred; +     struct thread *td; +{ +