From: Joseph Sutton Date: Wed, 9 Aug 2023 04:13:20 +0000 (+1200) Subject: s4:kdc: Correct comments mentioning Heimdal X-Git-Tag: tevent-0.16.0~1024 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2de67b7174813eb394952ceed386171340fe3757;p=thirdparty%2Fsamba.git s4:kdc: Correct comments mentioning Heimdal Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/source4/kdc/mit_samba.c b/source4/kdc/mit_samba.c index 1751b22c2b8..2ca21fa59ed 100644 --- a/source4/kdc/mit_samba.c +++ b/source4/kdc/mit_samba.c @@ -47,7 +47,7 @@ void mit_samba_context_free(struct mit_samba_context *ctx) { - /* free heimdal's krb5_context */ + /* free MIT's krb5_context */ if (ctx->context) { krb5_free_context(ctx->context); } @@ -120,7 +120,7 @@ int mit_samba_context_init(struct mit_samba_context **_ctx) goto done; } - /* init heimdal's krb_context and log facilities */ + /* init MIT's krb_context and log facilities */ ret = smb_krb5_init_context_basic(ctx, ctx->db_ctx->lp_ctx, &ctx->context);