Module Name:    src
Committed By:   mbalmer
Date:           Fri Feb 17 12:08:13 UTC 2012

Modified Files:
        src/external/bsd/iscsi/dist/src/lib: initiator.c
        src/share/wscons/keymaps: pckbd.fr_CA.iso8859-1

Log Message:
Fix typos (in comments).


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/iscsi/dist/src/lib/initiator.c
cvs rdiff -u -r1.1 -r1.2 src/share/wscons/keymaps/pckbd.fr_CA.iso8859-1

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/iscsi/dist/src/lib/initiator.c
diff -u src/external/bsd/iscsi/dist/src/lib/initiator.c:1.6 src/external/bsd/iscsi/dist/src/lib/initiator.c:1.7
--- src/external/bsd/iscsi/dist/src/lib/initiator.c:1.6	Thu Oct  6 13:05:29 2011
+++ src/external/bsd/iscsi/dist/src/lib/initiator.c	Fri Feb 17 12:08:12 2012
@@ -1792,7 +1792,7 @@ text_command_i(initiator_cmd_t * cmd)
 	 * Insert cmd into the hash table, keyed by the tag. The Rx thread
 	 * will
 	 */
-	/* retreive the cmd ptr using the tag from the response PDU. */
+	/* retrieve the cmd ptr using the tag from the response PDU. */
 
 	if (hash_insert(&g_tag_hash, cmd, text_cmd->tag) != 0) {
 		iscsi_err(__FILE__, __LINE__, "hash_insert() failed\n");
@@ -1830,7 +1830,7 @@ login_command_i(initiator_cmd_t * cmd)
 	 * Insert cmd into the hash table, keyed by the tag. The Rx thread
 	 * will
 	 */
-	/* retreive the cmd ptr using the tag from the response PDU. */
+	/* retrieve the cmd ptr using the tag from the response PDU. */
 
 	if (hash_insert(&g_tag_hash, cmd, login_cmd->tag) != 0) {
 		iscsi_err(__FILE__, __LINE__, "hash_insert() failed\n");
@@ -2383,7 +2383,7 @@ logout_command_i(initiator_cmd_t * cmd)
 	 * Insert cmd into the hash table, keyed by the tag. The Rx thread
 	 * will
 	 */
-	/* retreive the cmd ptr using the tag from the response PDU. */
+	/* retrieve the cmd ptr using the tag from the response PDU. */
 
 	if (hash_insert(&g_tag_hash, cmd, logout_cmd->tag) != 0) {
 		iscsi_err(__FILE__, __LINE__, "hash_insert() failed\n");
@@ -2492,7 +2492,7 @@ nop_out_i(initiator_cmd_t * cmd)
 		/*
 		 * Insert cmd into the hash table, keyed by
 		 * nop_out->tag.  Upon receipt of the NOP_IN_T, the Rx
-		 * thread will retreive the cmd ptr using the tag from
+		 * thread will retrieve the cmd ptr using the tag from
 		 * the NOP_IN_T PDU.  */
 
 		if (hash_insert(&g_tag_hash, cmd, nop_out->tag) != 0) {
@@ -2590,7 +2590,7 @@ scsi_command_i(initiator_cmd_t * cmd)
 	 * Insert cmd into the hash table, keyed by scsi_cmd->tag.  The Rx
 	 * thread will
 	 */
-	/* retreive the cmd ptr using the tag from the response PDU. */
+	/* retrieve the cmd ptr using the tag from the response PDU. */
 
 	if (hash_insert(&g_tag_hash, cmd, scsi_cmd->tag) != 0) {
 		iscsi_err(__FILE__, __LINE__, "hash_insert() failed\n");

Index: src/share/wscons/keymaps/pckbd.fr_CA.iso8859-1
diff -u src/share/wscons/keymaps/pckbd.fr_CA.iso8859-1:1.1 src/share/wscons/keymaps/pckbd.fr_CA.iso8859-1:1.2
--- src/share/wscons/keymaps/pckbd.fr_CA.iso8859-1:1.1	Sat Sep 23 02:37:45 2006
+++ src/share/wscons/keymaps/pckbd.fr_CA.iso8859-1	Fri Feb 17 12:08:12 2012
@@ -1,4 +1,4 @@
-# $NetBSD: pckbd.fr_CA.iso8859-1,v 1.1 2006/09/23 02:37:45 jmcneill Exp $
+# $NetBSD: pckbd.fr_CA.iso8859-1,v 1.2 2012/02/17 12:08:12 mbalmer Exp $
 #
 # This is the Candadian French keyboard mapping for wscons and iso8859-1,
 # provided by Matthew Mondor for the NetBSD project through PR kern/23184.
@@ -12,7 +12,7 @@
 # accents (except for eacute and Eacute), which most keyboards sold in Quebec
 # are made for. The labels on the keys match properly. However, an effort was
 # made to not loose any important keys for programming. To do so, pressing the
-# Right Alternate key allows to retreive the standard US mapping for a key.
+# Right Alternate key allows to retrieve the standard US mapping for a key.
 # The exception to this rule consists of V and B which correspond to the
 # French '<<' and '>>' accents when Right Alternate key is used, to respect
 # the standard.

Reply via email to