summaryrefslogtreecommitdiff
path: root/sys/scsi/mpath.c
diff options
context:
space:
mode:
authorPeter Hessler <phessler@cvs.openbsd.org>2019-02-10 16:42:36 +0000
committerPeter Hessler <phessler@cvs.openbsd.org>2019-02-10 16:42:36 +0000
commit029d0047c4edb5891d11b15c9f100faf06c16906 (patch)
tree0cfc63cc0dbf9cd7d581828fe8e1bf01d800a059 /sys/scsi/mpath.c
parent018ff054f6fde41099b0b7fcd206caabdc7ba803 (diff)
"non-existant" is one of those words that don't exist, so use "non-existent"
instead From Pamela Mosiejczuk, many thanks! OK phessler@ deraadt@
Diffstat (limited to 'sys/scsi/mpath.c')
-rw-r--r--sys/scsi/mpath.c8
1 files changed, 4 insertions, 4 deletions
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;