bug-fileutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: chmod g=o


From: Juan F . Codagnone
Subject: Re: chmod g=o
Date: Sat, 17 Nov 2001 11:50:14 -0300

sory: it does not say 
value |=   (value & S_IWOTH ? S_IWUSR | S_IRGRP : 0);
y change it so looked better it 
says 
        (value & S_IWOTH ? S_IWUSR | S_IRGRP : 0) 
i think

On Saturday 17 November 2001 11:07, Juan F. Codagnone wrote:
> The fix is easy. a copy/paste bug.
>
> in lib/modechange.c line 427 says
>             value |=   (value & S_IWOTH ? S_IWUSR | S_IRGRP : 0);
> it should be
>       value |=   (value & S_IWOTH ? S_IWUSR | S_IWGRP : 0);
> the same bugs are at line 422 and 417. Am i right?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]