CVSROOT: /cvs Module name: src Changes by: k...@cvs.openbsd.org 2019/01/03 15:49:00
Modified files: sbin/pfctl : pfctl_optimize.c Log message: Unbreak build under OPT_DEBUG In r1.39 I removed the `af' parameter from `unmask()' but accidently zapped the macro's closing paranthese. Since DEBUG() is needlessly under an OPT_DEBUG guard, this was not effecting normal builds. Add the missing ')' and remove the ifdef. OK sashan