1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-30 08:19:09 +00:00

Modify the comment to take out the names and URL.

Requested by:	kib
MFC after:	3 days
This commit is contained in:
Rick Macklem 2012-10-25 19:30:58 +00:00
parent 4354cca446
commit 1e0706fdf7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=242090

View File

@ -1025,12 +1025,9 @@ svc_rpc_gss_validate(struct svc_rpc_gss_client *client, struct rpc_msg *msg,
rpc_gss_log_status("gss_verify_mic", client->cl_mech,
maj_stat, min_stat);
/*
* Attila Bogar and Herbert Poeckl reported similar problems
* w.r.t. a Linux NFS client doing a krb5 NFS mount against the
* FreeBSD server. We determined this was a Linux bug:
* http://www.spinics.net/lists/linux-nfs/msg32466.html, where
* the mount failed to work because a Destroy operation with a
* bogus encrypted checksum destroyed the authenticator handle.
* A bug in some versions of the Linux client generates a
* Destroy operation with a bogus encrypted checksum. Deleting
* the credential handle for that case causes the mount to fail.
* Since the checksum is bogus (gss_verify_mic() failed), it
* doesn't make sense to destroy the handle and not doing so
* fixes the Linux mount.