From: Andrew Deason Date: Tue, 22 Jan 2013 21:41:38 +0000 (-0600) Subject: aklog: Fix allow_weak_crypto warning X-Git-Tag: upstream/1.6.2^2~8 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=d9ce43be3e7e98641a1b33678d2ec516948e1968;p=packages%2Fo%2Fopenafs.git aklog: Fix allow_weak_crypto warning It's _crypto, not _enctypes. The user will just be more confused than before if we tell them to do the wrong thing. Reviewed-on: http://gerrit.openafs.org/8938 Reviewed-by: Derrick Brashear Reviewed-by: Simon Wilkinson Tested-by: BuildBot (cherry picked from commit f6f145c90fbc236c350ddaa4d18b359be581496f) Change-Id: I17978b15f140729760ce84f1a7af913eac97d836 Reviewed-on: http://gerrit.openafs.org/8940 Reviewed-by: Stephan Wiesand Tested-by: BuildBot Reviewed-by: Paul Smeddle --- diff --git a/src/aklog/aklog.c b/src/aklog/aklog.c index cce3c4451..c9fe9e864 100644 --- a/src/aklog/aklog.c +++ b/src/aklog/aklog.c @@ -622,7 +622,7 @@ rxkad_get_ticket(krb5_context context, char *realm, afs_com_err(progname, status, "while getting AFS tickets"); #ifdef KRB5_CC_NOT_KTYPE if (status == KRB5_CC_NOT_KTYPE) { - fprintf(stderr, "allow_weak_enctypes may be required in the Kerberos configuration\n"); + fprintf(stderr, "allow_weak_crypto may be required in the Kerberos configuration\n"); } #endif status = AKLOG_KERBEROS;