summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2007-03-26 01:44:07 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2007-03-26 01:44:07 +0000
commitde3f7bf81b5298623781825b8c4a4e2fdedcbc24 (patch)
tree66363171930e9615792d53df71e947fe1e50849b
parentbaaa98eeaa67bd95aad4594054fd45335e6e44ac (diff)
typos in comments
-rw-r--r--sys/dev/softraid.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/softraid.c b/sys/dev/softraid.c
index 55554e44c70..5e995ffc367 100644
--- a/sys/dev/softraid.c
+++ b/sys/dev/softraid.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: softraid.c,v 1.7 2007/03/24 05:15:19 tedu Exp $ */
+/* $OpenBSD: softraid.c,v 1.8 2007/03/26 01:44:06 tedu Exp $ */
/*
* Copyright (c) 2007 Marco Peereboom <marco@peereboom.us>
*
@@ -804,7 +804,7 @@ sr_parse_chunks(struct sr_softc *sc, char *lst, struct sr_chunk_head *cl)
s = e = lst;
ch_prev = NULL;
- /* make sure we have a valid device lst like /dev/sdNa,/dev/sdNNa */
+ /* make sure we have a valid device list like /dev/sdNa,/dev/sdNNa */
while (*e != '\0') {
if (*e == ',')
s = e + 1;
@@ -1113,7 +1113,7 @@ sr_raid1_start_stop(struct sr_workunit *wu)
/* START */
if (sd->sd_vol.sv_meta.svm_status == BIOC_SVOFFLINE) {
/* bring volume online */
- /* XXX check to see if volume can be brough online */
+ /* XXX check to see if volume can be brought online */
sd->sd_vol.sv_meta.svm_status = BIOC_SVONLINE;
}
rv = 0;