diff options
| author | Rick Macklem <rmacklem@FreeBSD.org> | 2011-06-19 22:08:55 +0000 |
|---|---|---|
| committer | Rick Macklem <rmacklem@FreeBSD.org> | 2011-06-19 22:08:55 +0000 |
| commit | 7e7fd7d177c641879ad881c0d9011220fc384845 (patch) | |
| tree | 1748b2392bad991b60d72c1a5c4c795f329b87ca /sys/modules/Makefile | |
| parent | f982db4aa81df1235e335ccceecf7112edf2586a (diff) | |
Fix the kgssapi so that it can be loaded as a module. Currently
the NFS subsystems use five of the rpcsec_gss/kgssapi entry points,
but since it was not obvious which others might be useful, all
nineteen were included. Basically the nineteen entry points are
set in a structure called rpc_gss_entries and inline functions
defined in sys/rpc/rpcsec_gss.h check for the entry points being
non-NULL and then call them. A default value is returned otherwise.
Requested by rwatson.
Reviewed by: jhb
MFC after: 2 weeks
Notes
svn path=/head/; revision=223309
Diffstat (limited to 'sys/modules/Makefile')
| -rw-r--r-- | sys/modules/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index a83d56fe00b9..2dbc3d9ce71e 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -155,6 +155,8 @@ SUBDIR= ${_3dfx} \ jme \ joy \ kbdmux \ + kgssapi \ + kgssapi_krb5 \ khelp \ krpc \ ksyms \ |
