]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s4:kdc: Correct comments mentioning Heimdal
authorJoseph Sutton <josephsutton@catalyst.net.nz>
Wed, 9 Aug 2023 04:13:20 +0000 (16:13 +1200)
committerAndrew Bartlett <abartlet@samba.org>
Mon, 14 Aug 2023 04:57:34 +0000 (04:57 +0000)
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
source4/kdc/mit_samba.c

index 1751b22c2b88bad69f140955aa45e524b8367f2a..2ca21fa59ed0592d43188f68048db7c74aef0cee 100644 (file)
@@ -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);