Page MenuHomeFreeBSD

netgraph.h: Wrong path in the man page
ClosedPublic

Authored by donner on Feb 24 2020, 11:09 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Sep 9, 3:41 PM
Unknown Object (File)
Sat, Sep 5, 3:12 PM
Unknown Object (File)
Sat, Sep 5, 2:04 PM
Unknown Object (File)
Sat, Sep 5, 12:03 AM
Unknown Object (File)
Fri, Sep 4, 2:52 PM
Unknown Object (File)
Fri, Sep 4, 8:47 AM
Unknown Object (File)
Wed, Sep 2, 6:11 PM
Unknown Object (File)
Wed, Sep 2, 1:12 PM

Details

Summary

netgraph(3) points to #include <netgraph/netgraph.h>, which is kernel only.
The man page refers to the user-space part of the netgraph module, which is located in <netgraph.h>.

Test Plan
#include <netgraph/netgraph.h>

compile as use space program will produce the error message

/usr/include/netgraph/netgraph.h:48:2: error: "This file should not be included in user level programs"

Change it to

#include <netgraph.h>

and it compiles fine.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable