diff options
author | Igor Sobrado <sobrado@cvs.openbsd.org> | 2010-09-25 14:40:29 +0000 |
---|---|---|
committer | Igor Sobrado <sobrado@cvs.openbsd.org> | 2010-09-25 14:40:29 +0000 |
commit | e2b54fe77c585fa3712a12ac064e53a2b68577e3 (patch) | |
tree | b595efb340118b236a6013e9b9b8c5618f227267 | |
parent | f59b6201d7a38e5881dd8375d926fcb37e3e1aa6 (diff) |
fix typos in documentation and log_debug() function.
ok claudio@
-rw-r--r-- | usr.sbin/iscsid/initiator.c | 4 | ||||
-rw-r--r-- | usr.sbin/iscsid/task.c | 4 |
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. */ |