Re: [PATCH iproute2] Replace BSD MAXPATHLEN by POSIX PATH_MAX

2015-07-27 Thread Yegor Yefremov
On Sun, Jul 26, 2015 at 9:25 PM, Felix Janda wrote: > Prefer using the POSIX constant PATH_MAX instead of the legacy BSD > derived MAXPATHLEN. The necessary includes for MAXPATHLEN and PATH_MAX > are and , respectively. > > Signed-off-by: Felix Janda Tested-by: Yegor Yefremov > --- > This pat

[PATCH iproute2] Replace BSD MAXPATHLEN by POSIX PATH_MAX

2015-07-26 Thread Felix Janda
Prefer using the POSIX constant PATH_MAX instead of the legacy BSD derived MAXPATHLEN. The necessary includes for MAXPATHLEN and PATH_MAX are and , respectively. Signed-off-by: Felix Janda --- This patch is identical except for title and commit message to the one with title "Use PATH_MAX instead