diff options
author | bapt <bapt@FreeBSD.org> | 2016-05-22 13:10:48 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2016-05-22 13:10:48 +0000 |
commit | 8bfdfde95eeeebe95b910020ef6a85ab0e1268af (patch) | |
tree | 6c3a2acf60364e7e19b5437829b9060bf912d04c | |
parent | 58e5acb1f53954300d0ff55c9c715884ff506085 (diff) | |
download | FreeBSD-src-8bfdfde95eeeebe95b910020ef6a85ab0e1268af.zip FreeBSD-src-8bfdfde95eeeebe95b910020ef6a85ab0e1268af.tar.gz |
Fix typo introduced by me (not the submitter) when fixing typos
-rw-r--r-- | sys/kern/uipc_socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/uipc_socket.c b/sys/kern/uipc_socket.c index 6f3296e..8117418 100644 --- a/sys/kern/uipc_socket.c +++ b/sys/kern/uipc_socket.c @@ -1164,7 +1164,7 @@ sosend_dgram(struct socket *so, struct sockaddr *addr, struct uio *uio, } /* * XXX all the SBS_CANTSENDMORE checks previously done could be out - * of date. We could have recived a reset packet in an interrupt or + * of date. We could have received a reset packet in an interrupt or * maybe we slept while doing page faults in uiomove() etc. We could * probably recheck again inside the locking protection here, but * there are probably other places that this also happens. We must |