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:
usr/subversion-
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 fifo
On Sun, Feb 26, 2012 at 10:12 PM, Ed Schouten wrote:
> Hi Jilles,
>
> * Jilles Tjoelker , 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 p
Hi Jilles,
* Jilles Tjoelker , 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 = fp->f_data;
> +
On Sun, Feb 26, 2012 at 4:14 PM, 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
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
Report