https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=289504

            Bug ID: 289504
           Summary: sysctl_kern_proc_kqueue() uses the non-existent
                    FREEBSD_COMPAT32, should be COMPAT_FREEBSD32
           Product: Base System
           Version: CURRENT
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Some People
          Priority: ---
         Component: kern
          Assignee: [email protected]
          Reporter: [email protected]

In sys/kern/kern_event.c function sysctl_kern_proc_kqueue() checks for the
FREEBSD_COMPAT32 define, which doesn't exist. It should be COMPAT_FREEBSD32
instead:

#ifdef FREEBSD_COMPAT32
        compat32 = SV_CURPROC_FLAG(SV_ILP32);
#else
        compat32 = false;
#endif

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to