提交 11d254cf 编写于 作者: W weijun

6740833: krb5.conf does not accept kdc=hostname (no spaces around =)

Reviewed-by: xuelei
上级 e0bb8481
......@@ -803,7 +803,7 @@ public class Config {
for (int j = 0; j < line.length(); j++) {
if (line.charAt(j) == '=') {
int index;
key = line.substring(0, j - 1).trim();
key = line.substring(0, j).trim();
if (! exists(key, keyVector)) {
keyVector.addElement(key);
nameVector = new Vector<String> ();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册