Re: net/pfvar.h: MAXPATHLEN -> PATH_MAX

2020-10-13 Thread Alexandr Nedvedicky
Hello,

On Tue, Oct 13, 2020 at 10:31:28PM +0200, Christian Weisgerber wrote:
> In revision 1.407 of , deraadt@ replaced MAXPATHLEN
> with PATH_MAX so userland wouldn't have to pull in .
> 
> In 1.466, sashan@ accidentally slipped one MAXPATHLEN back in,
> because its use is ubiquitous on the kernel side of pf.  Switch
> this over to PATH_MAX again.
> 
> pfctl(8) doesn't actually use this, so it's very cosmetic.

fine with me. and sorry for inconveniences.

OK sashan

> 
> Index: sys/net/pfvar.h
> ===
> RCS file: /cvs/src/sys/net/pfvar.h,v
> retrieving revision 1.496
> diff -u -p -r1.496 pfvar.h
> --- sys/net/pfvar.h   24 Aug 2020 15:30:58 -  1.496
> +++ sys/net/pfvar.h   13 Oct 2020 20:21:04 -
> @@ -475,7 +475,7 @@ union pf_rule_ptr {
>  };
>  
>  #define  PF_ANCHOR_NAME_SIZE  64
> -#define  PF_ANCHOR_MAXPATH   (MAXPATHLEN - PF_ANCHOR_NAME_SIZE - 1)
> +#define  PF_ANCHOR_MAXPATH   (PATH_MAX - PF_ANCHOR_NAME_SIZE - 1)
>  #define  PF_OPTIMIZER_TABLE_PFX  "__automatic_"
>  
>  struct pf_rule {
> -- 
> Christian "naddy" Weisgerber  na...@mips.inka.de
> 



net/pfvar.h: MAXPATHLEN -> PATH_MAX

2020-10-13 Thread Christian Weisgerber
In revision 1.407 of , deraadt@ replaced MAXPATHLEN
with PATH_MAX so userland wouldn't have to pull in .

In 1.466, sashan@ accidentally slipped one MAXPATHLEN back in,
because its use is ubiquitous on the kernel side of pf.  Switch
this over to PATH_MAX again.

pfctl(8) doesn't actually use this, so it's very cosmetic.

Index: sys/net/pfvar.h
===
RCS file: /cvs/src/sys/net/pfvar.h,v
retrieving revision 1.496
diff -u -p -r1.496 pfvar.h
--- sys/net/pfvar.h 24 Aug 2020 15:30:58 -  1.496
+++ sys/net/pfvar.h 13 Oct 2020 20:21:04 -
@@ -475,7 +475,7 @@ union pf_rule_ptr {
 };
 
 #definePF_ANCHOR_NAME_SIZE  64
-#definePF_ANCHOR_MAXPATH   (MAXPATHLEN - PF_ANCHOR_NAME_SIZE - 1)
+#definePF_ANCHOR_MAXPATH   (PATH_MAX - PF_ANCHOR_NAME_SIZE - 1)
 #definePF_OPTIMIZER_TABLE_PFX  "__automatic_"
 
 struct pf_rule {
-- 
Christian "naddy" Weisgerber  na...@mips.inka.de