summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Sutton <josephsutton@catalyst.net.nz>2023-05-09 12:42:54 +1200
committerAndrew Bartlett <abartlet@samba.org>2023-05-18 01:03:37 +0000
commit798be592f90e47f71207bddefe77dfe84f82d903 (patch)
treee526c66d1be013b59856a9e6e08ec3e7780c2b47
parent60803ea8c81486911caa079af22d43ebeb662c40 (diff)
downloadsamba-798be592f90e47f71207bddefe77dfe84f82d903.tar.gz
s4:kdc: Fix debugging strings
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
-rw-r--r--source4/kdc/hdb-samba4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/kdc/hdb-samba4.c b/source4/kdc/hdb-samba4.c
index 9e2469f5123..011cd0fd65a 100644
--- a/source4/kdc/hdb-samba4.c
+++ b/source4/kdc/hdb-samba4.c
@@ -169,10 +169,10 @@ static krb5_error_code hdb_samba4_fetch_fast_cookie(krb5_context context,
};
const struct ldb_val *val;
- mem_ctx = talloc_named(kdc_db_ctx, 0, "samba_kdc_fetch context");
+ mem_ctx = talloc_named(kdc_db_ctx, 0, "hdb_samba4_fetch_fast_cookie context");
if (!mem_ctx) {
ret = ENOMEM;
- krb5_set_error_message(context, ret, "samba_kdc_fetch: talloc_named() failed!");
+ krb5_set_error_message(context, ret, "hdb_samba4_fetch_fast_cookie: talloc_named() failed!");
return ret;
}