From: Jo Sutton Date: Mon, 11 Mar 2024 22:08:30 +0000 (+1300) Subject: s4:auth: Update error messages X-Git-Tag: tdb-1.4.11~1382 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=eac2395415616595c6163768baa163a83a3cea5a;p=thirdparty%2Fsamba.git s4:auth: Update error messages Signed-off-by: Jo Sutton Reviewed-by: Andrew Bartlett --- diff --git a/source4/auth/kerberos/srv_keytab.c b/source4/auth/kerberos/srv_keytab.c index a0c68e28c88..4d5306d9002 100644 --- a/source4/auth/kerberos/srv_keytab.c +++ b/source4/auth/kerberos/srv_keytab.c @@ -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));