diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/if_pfsync.c | 4 | ||||
-rw-r--r-- | sys/scsi/mpath.c | 8 | ||||
-rw-r--r-- | sys/uvm/uvm_map.c | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/sys/net/if_pfsync.c b/sys/net/if_pfsync.c index 8d842e48466..20a0136e838 100644 --- a/sys/net/if_pfsync.c +++ b/sys/net/if_pfsync.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pfsync.c,v 1.261 2018/10/03 01:24:14 visa Exp $ */ +/* $OpenBSD: if_pfsync.c,v 1.262 2019/02/10 16:42:35 phessler Exp $ */ /* * Copyright (c) 2002 Michael Shalayeff @@ -2062,7 +2062,7 @@ pfsync_update_state_req(struct pf_state *st) struct pfsync_softc *sc = pfsyncif; if (sc == NULL) - panic("pfsync_update_state_req: nonexistant instance"); + panic("pfsync_update_state_req: nonexistent instance"); if (ISSET(st->state_flags, PFSTATE_NOSYNC)) { if (st->sync_state != PFSYNC_S_NONE) diff --git a/sys/scsi/mpath.c b/sys/scsi/mpath.c index abc1acf094c..9c016f24552 100644 --- a/sys/scsi/mpath.c +++ b/sys/scsi/mpath.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpath.c,v 1.41 2015/08/23 01:55:39 tedu Exp $ */ +/* $OpenBSD: mpath.c,v 1.42 2019/02/10 16:42:35 phessler Exp $ */ /* * Copyright (c) 2009 David Gwynne <dlg@openbsd.org> @@ -189,7 +189,7 @@ mpath_cmd(struct scsi_xfer *xs) #ifdef DIAGNOSTIC if (d == NULL) - panic("mpath_cmd issued against nonexistant device"); + panic("mpath_cmd issued against nonexistent device"); #endif if (ISSET(xs->flags, SCSI_POLL)) { @@ -404,7 +404,7 @@ mpath_minphys(struct buf *bp, struct scsi_link *link) #ifdef DIAGNOSTIC if (d == NULL) - panic("mpath_minphys against nonexistant device"); + panic("mpath_minphys against nonexistent device"); #endif mtx_enter(&d->d_mtx); @@ -548,7 +548,7 @@ mpath_path_detach(struct mpath_path *p) #ifdef DIAGNOSTIC if (g == NULL) - panic("mpath: detaching a path from a nonexistant bus"); + panic("mpath: detaching a path from a nonexistent bus"); #endif d = g->g_dev; p->p_group = NULL; diff --git a/sys/uvm/uvm_map.c b/sys/uvm/uvm_map.c index d97f60fdf09..311b556c9d6 100644 --- a/sys/uvm/uvm_map.c +++ b/sys/uvm/uvm_map.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_map.c,v 1.239 2018/10/31 08:50:25 kettenis Exp $ */ +/* $OpenBSD: uvm_map.c,v 1.240 2019/02/10 16:42:35 phessler Exp $ */ /* $NetBSD: uvm_map.c,v 1.86 2000/11/27 08:40:03 chs Exp $ */ /* @@ -1491,7 +1491,7 @@ uvm_mapent_merge(struct vm_map *map, struct vm_map_entry *e1, * Attempt forward and backward joining of entry. * * Returns entry after joins. - * We are guaranteed that the amap of entry is either non-existant or + * We are guaranteed that the amap of entry is either non-existent or * has never been used. */ struct vm_map_entry* |