1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s3-kerberos: try to fix the build w/o kerberos support.

Guenther
This commit is contained in:
Günther Deschner 2010-08-30 15:52:27 +02:00
parent 1d3bd5b1c0
commit 85b8d7c605

View File

@ -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 */