1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Fix a common typo in source code comments

- s/existant/existent/

MFC after:	3 days
This commit is contained in:
Gordon Bergling 2021-09-04 12:56:57 +02:00
parent cb5c07649a
commit 631504fb34
4 changed files with 5 additions and 5 deletions

View File

@ -901,7 +901,7 @@ efx_vpd_hunk_set(
/*
* The keyword doesn't already exist. If the
* user deleting a non-existant keyword then
* user deleting a non-existent keyword then
* this is a no-op.
*/
if (evvp->evv_length == 0)

View File

@ -59,7 +59,7 @@ static inline int INTERFACE(int ipd_port)
return 2;
else if (ipd_port < 40) /* Interface 3 for loopback */
return 3;
else if (ipd_port == 40) /* Non existant interface for POW0 */
else if (ipd_port == 40) /* Non existent interface for POW0 */
return 4;
else
panic("Illegal ipd_port %d passed to INTERFACE\n", ipd_port);

View File

@ -12693,8 +12693,8 @@ sctp_lower_sosend(struct socket *so,
if ((sinfo_flags & SCTP_ABORT) ||
((sinfo_flags & SCTP_EOF) && (sndlen == 0))) {
/*-
* User asks to abort a non-existant assoc,
* or EOF a non-existant assoc with no data
* User asks to abort a non-existent assoc,
* or EOF a non-existent assoc with no data
*/
SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT);
error = ENOENT;

View File

@ -669,7 +669,7 @@ __END_DECLS
* Somebody has to wait for incoming requests and then call the correct
* service routine. The routine svc_run does infinite waiting; i.e.,
* svc_run never returns.
* Since another (co-existant) package may wish to selectively wait for
* Since another (co-existent) package may wish to selectively wait for
* incoming calls or other events outside of the rpc architecture, the
* routine svc_getreq is provided. It must be passed readfds, the
* "in-place" results of a select system call (see select, section 2).