Re: [U-Boot] [PATCH 5/5] sandbox/fs: Use readdir instead of deprecated readdir_r

2016-10-10 Thread Simon Glass
On 3 October 2016 at 15:50, Simon Glass wrote: > On 1 October 2016 at 12:41, Stefan Brüns wrote: >> Using readdir_r limits the maximum file name length and may even be >> unsafe, and is thus deprecated in since glibc 2.24. >> >> Signed-off-by:

Re: [U-Boot] [PATCH 5/5] sandbox/fs: Use readdir instead of deprecated readdir_r

2016-10-03 Thread Simon Glass
On 1 October 2016 at 12:41, Stefan Brüns wrote: > Using readdir_r limits the maximum file name length and may even be > unsafe, and is thus deprecated in since glibc 2.24. > > Signed-off-by: Stefan Brüns > --- > arch/sandbox/cpu/os.c |

[U-Boot] [PATCH 5/5] sandbox/fs: Use readdir instead of deprecated readdir_r

2016-10-01 Thread Stefan Brüns
Using readdir_r limits the maximum file name length and may even be unsafe, and is thus deprecated in since glibc 2.24. Signed-off-by: Stefan Brüns --- arch/sandbox/cpu/os.c | 19 +++ 1 file changed, 11 insertions(+), 8 deletions(-) diff --git