repair-afs-cryptall-20010111

This makes it possible to have encryption enabled, but does not
expose an interface to do so. That will follow tomorrow, when
hopefully OpenAFS and Arla will have synchronized pioctls allowing
userspace compatibility
This commit is contained in:
Greg Hudson 2001-01-11 06:50:43 +00:00 committed by Derrick Brashear
parent 4e81c489ee
commit 10892a7bde

View File

@ -220,15 +220,15 @@ struct conn *afs_ConnBySA(struct srvAddr *sap, unsigned short aport,
if (cryptall) {
level=rxkad_crypt;
isec=3;
}
else {
} else {
level=rxkad_clear;
isec=2;
}
/* kerberos tickets on channel 2 */
csec = rxkad_NewClientSecurityObject(level, tu->ct.HandShakeKey,
/* kvno */ tu->ct.AuthHandle, tu->stLen, tu->stp);
isec=2;
/* kerberos tickets on channel 2 */
csec = rxkad_NewClientSecurityObject(level, tu->ct.HandShakeKey,
/* kvno */
tu->ct.AuthHandle,
tu->stLen, tu->stp);
}
if (isec == 0)
csec = rxnull_NewClientSecurityObject();