Re: [hackers] [sbase] install: Use fchown to change owner || Michael Forney

2020-05-25 Thread Quentin Rameau
> >> +  if (fchown(f2, owner, group) < 0)
> >> +  eprintf("lchown %s:", s2);
> >
> > Little typo here ^
> 
> Whoops, missed that. In the follow up commit, I used the correct
> function name, so I think it's just a mistake from when I split my
> changes into two commits.

Oh right, I missed the change in the other commit because it arrived
before this one on the mailing list, forget about my comment then!



Re: [hackers] [sbase] install: Use fchown to change owner || Michael Forney

2020-05-25 Thread Michael Forney
On 2020-05-24, Quentin Rameau  wrote:
> Hi Michael,
>
>> +if (fchown(f2, owner, group) < 0)
>> +eprintf("lchown %s:", s2);
>
> Little typo here ^

Whoops, missed that. In the follow up commit, I used the correct
function name, so I think it's just a mistake from when I split my
changes into two commits.



Re: [hackers] [sbase] install: Use fchown to change owner || Michael Forney

2020-05-25 Thread Quentin Rameau
Hi Michael,

> + if (fchown(f2, owner, group) < 0)
> + eprintf("lchown %s:", s2);

Little typo here ^