Correct typos in comments.

MFC after:	3 weeks
This commit is contained in:
Robert Watson 2008-01-10 12:29:12 +00:00
parent 79c2840d1d
commit a635784569

View File

@ -1048,13 +1048,13 @@ uipc_ctloutput(struct socket *so, struct sockopt *sopt)
break;
case LOCAL_CREDS:
/* Unocked read. */
/* Unlocked read. */
optval = unp->unp_flags & UNP_WANTCRED ? 1 : 0;
error = sooptcopyout(sopt, &optval, sizeof(optval));
break;
case LOCAL_CONNWAIT:
/* Unocked read. */
/* Unlocked read. */
optval = unp->unp_flags & UNP_CONNWAIT ? 1 : 0;
error = sooptcopyout(sopt, &optval, sizeof(optval));
break;