Re: [PATCH 01/46] chmod: Use fchmodat if arch does not have the chmod syscall

2012-11-17 Thread Mike Frysinger
On Tuesday 13 November 2012 06:31:10 Markos Chandras wrote: +int chmod(const char* path, mode_t mode) const char *path, not const char* path. seems to apply to many patches in this series. -mike signature.asc Description: This is a digitally signed message part.

Re: [PATCH 01/46] chmod: Use fchmodat if arch does not have the chmod syscall

2012-11-17 Thread Mike Frysinger
On Tuesday 13 November 2012 06:31:10 Markos Chandras wrote: +#if defined(__NR_fchmodat) ! defined(__NR_chmod) also, !defined rather than ! defined -mike signature.asc Description: This is a digitally signed message part. ___ uClibc mailing list

Re: [PATCH 01/46] chmod: Use fchmodat if arch does not have the chmod syscall

2012-11-17 Thread Markos Chandras
On Sat, Nov 17, 2012 at 8:25 PM, Mike Frysinger vap...@gentoo.org wrote: On Tuesday 13 November 2012 06:31:10 Markos Chandras wrote: +#if defined(__NR_fchmodat) ! defined(__NR_chmod) also, !defined rather than ! defined -mike Hi Mike, Thanks for the review. I will do the necessary