summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.sbin/iscsid/initiator.c4
-rw-r--r--usr.sbin/iscsid/task.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/iscsid/initiator.c b/usr.sbin/iscsid/initiator.c
index a94105ea25b..78406e22d8d 100644
--- a/usr.sbin/iscsid/initiator.c
+++ b/usr.sbin/iscsid/initiator.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: initiator.c,v 1.1 2010/09/24 09:43:19 claudio Exp $ */
+/* $OpenBSD: initiator.c,v 1.2 2010/09/25 14:40:28 sobrado Exp $ */
/*
* Copyright (c) 2009 Claudio Jeker <claudio@openbsd.org>
@@ -300,7 +300,7 @@ initiator_login_cb(struct connection *c, void *arg, struct pdu *p)
/* XXX handle packet would be great */
log_pdu(p, 1);
if (ISCSI_PDU_OPCODE(lresp->opcode) != ISCSI_OP_LOGIN_RESPONSE) {
- log_debug("Unkown crap");
+ log_debug("Unknown crap");
}
task_cleanup(&tl->task, c);
diff --git a/usr.sbin/iscsid/task.c b/usr.sbin/iscsid/task.c
index 70a4c85534c..1f26793deb8 100644
--- a/usr.sbin/iscsid/task.c
+++ b/usr.sbin/iscsid/task.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: task.c,v 1.1 2010/09/24 09:43:19 claudio Exp $ */
+/* $OpenBSD: task.c,v 1.2 2010/09/25 14:40:28 sobrado Exp $ */
/*
* Copyright (c) 2009 Claudio Jeker <claudio@openbsd.org>
@@ -33,7 +33,7 @@
#include "log.h"
/*
- * Task handling, PDU are attached to tasks and task are scheduled accross
+ * Task handling, PDU are attached to tasks and task are scheduled across
* all connections of a session.
*/