From 8a148193da0ba801f5302a6a2285b39ab6f4d247 Mon Sep 17 00:00:00 2001 From: Gary Lockyer Date: Mon, 25 Sep 2017 14:16:09 +1300 Subject: [PATCH] heimdal_build: provide a prototype with the dummy afs header-only function stubs We do not do AFS in Samba Signed-off-by: Gary Lockyer Reviewed-by: Douglas Bagnall --- source4/heimdal_build/kafs.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source4/heimdal_build/kafs.h b/source4/heimdal_build/kafs.h index 878dd083970..bf2e02894aa 100644 --- a/source4/heimdal_build/kafs.h +++ b/source4/heimdal_build/kafs.h @@ -1,16 +1,29 @@ +int k_hasafs (void); + int k_hasafs (void) { return 0; }; +int krb_afslog (const char *cell, const char *realm); + int krb_afslog (const char *cell, const char *realm) { return 0; }; +int k_unlog (void); + int k_unlog (void) { return 0; }; +int k_setpag (void); + int k_setpag (void) { return 0; }; +krb5_error_code krb5_afslog (krb5_context context, + krb5_ccache id, + const char *cell, + krb5_const_realm realm); + krb5_error_code krb5_afslog (krb5_context context, krb5_ccache id, const char *cell, -- 2.47.2