1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-25 17:57:42 +03:00

s4:auth: Update error messages

Signed-off-by: Jo Sutton <josutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Jo Sutton 2024-03-12 11:08:30 +13:00 committed by Andrew Bartlett
parent 67af86d2ab
commit eac2395415

View File

@ -173,7 +173,7 @@ static krb5_error_code smb_krb5_fill_keytab(TALLOC_CTX *parent_ctx,
mem_ctx = talloc_new(parent_ctx);
if (!mem_ctx) {
*perror_string = talloc_strdup(parent_ctx,
"unable to allocate tmp_ctx for create_keytab");
"unable to allocate tmp_ctx for smb_krb5_fill_keytab");
return ENOMEM;
}
@ -191,7 +191,7 @@ static krb5_error_code smb_krb5_fill_keytab(TALLOC_CTX *parent_ctx,
ret = ms_suptypes_to_ietf_enctypes(mem_ctx, supp_enctypes, &enctypes);
if (ret) {
*perror_string = talloc_asprintf(parent_ctx,
"create_keytab: generating list of "
"smb_krb5_fill_keytab: generating list of "
"encryption types failed (%s)\n",
smb_get_krb5_error_message(context,
ret, mem_ctx));