Skip to content

Commit f7e91a3

Browse files
committed
Kerberos: warn on linux on missing KRB5CCNAME environment variable
git-svn-id: https://svn.code.sf.net/p/davmail/code/trunk@4188 3d1905a2-6b24-0410-a738-b14d5a86fcbd
1 parent 10727cd commit f7e91a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/java/davmail/http/KerberosLoginConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class KerberosLoginConfiguration extends Configuration {
5454
if (krb5ccName != null && !krb5ccName.isEmpty()) {
5555
clientLoginModuleOptions.put("ticketCache", krb5ccName);
5656
} else if (Settings.isLinux()) {
57-
LOGGER.warn("KRB5CCNAME environment variable not set, this may cause Kerberos authentication to fail if default_ccache_name is set ti KEYRING");
57+
LOGGER.warn("KRB5CCNAME environment variable not set, this may cause Kerberos authentication to fail if default_ccache_name is set to KEYRING");
5858
}
5959

6060
CLIENT_LOGIN_MODULE = new AppConfigurationEntry[]{new AppConfigurationEntry(

0 commit comments

Comments
 (0)