diff options
Diffstat (limited to 'include/linux/sunrpc/gss_api.h')
| -rw-r--r-- | include/linux/sunrpc/gss_api.h | 7 | 
1 files changed, 2 insertions, 5 deletions
| diff --git a/include/linux/sunrpc/gss_api.h b/include/linux/sunrpc/gss_api.h index bd691e08be3b..48c1b1674cbf 100644 --- a/include/linux/sunrpc/gss_api.h +++ b/include/linux/sunrpc/gss_api.h @@ -48,7 +48,7 @@ int gss_import_sec_context(  		size_t			bufsize,  		struct gss_api_mech	*mech,  		struct gss_ctx		**ctx_id, -		time_t			*endtime, +		time64_t		*endtime,  		gfp_t			gfp_mask);  u32 gss_get_mic(  		struct gss_ctx		*ctx_id, @@ -108,7 +108,7 @@ struct gss_api_ops {  			const void		*input_token,  			size_t			bufsize,  			struct gss_ctx		*ctx_id, -			time_t			*endtime, +			time64_t		*endtime,  			gfp_t			gfp_mask);  	u32 (*gss_get_mic)(  			struct gss_ctx		*ctx_id, @@ -150,9 +150,6 @@ struct gss_api_mech *gss_mech_get_by_name(const char *);  /* Similar, but get by pseudoflavor. */  struct gss_api_mech *gss_mech_get_by_pseudoflavor(u32); -/* Fill in an array with a list of supported pseudoflavors */ -int gss_mech_list_pseudoflavors(rpc_authflavor_t *, int); -  struct gss_api_mech * gss_mech_get(struct gss_api_mech *);  /* For every successful gss_mech_get or gss_mech_get_by_* call there must be a |