diff options
author | Günther Deschner <gd@samba.org> | 2010-08-30 15:52:27 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-08-30 16:03:17 +0200 |
commit | 85b8d7c605a2a8dec83696fea65d6aea5df66ce6 (patch) | |
tree | eb2b321f89a3f8e075a0c2774405f55110abfbd0 /source3/libsmb | |
parent | 1d3bd5b1c03e7e15fa2f089537cb29fd46797b16 (diff) | |
download | samba-85b8d7c605a2a8dec83696fea65d6aea5df66ce6.tar.gz samba-85b8d7c605a2a8dec83696fea65d6aea5df66ce6.tar.bz2 samba-85b8d7c605a2a8dec83696fea65d6aea5df66ce6.zip |
s3-kerberos: try to fix the build w/o kerberos support.
Guenther
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/clikrb5.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source3/libsmb/clikrb5.c b/source3/libsmb/clikrb5.c index 344fdacb96..854d32476f 100644 --- a/source3/libsmb/clikrb5.c +++ b/source3/libsmb/clikrb5.c @@ -2291,4 +2291,10 @@ char *smb_krb5_principal_get_realm(krb5_context context, return 1; } -#endif +bool unwrap_pac(TALLOC_CTX *mem_ctx, DATA_BLOB *auth_data, DATA_BLOB *unwrapped_pac_data) +{ + DEBUG(0,("NO KERBEROS SUPPORT\n")); + return false; +} + +#endif /* HAVE_KRB5 */ |