Module Name:    src
Committed By:   jakllsch
Date:           Sat Apr 13 16:48:04 UTC 2013

Modified Files:
        src/sbin/gpt: label.c remove.c

Log Message:
Use correct spelling of "secondary" in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sbin/gpt/label.c
cvs rdiff -u -r1.6 -r1.7 src/sbin/gpt/remove.c

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

Modified files:

Index: src/sbin/gpt/label.c
diff -u src/sbin/gpt/label.c:1.8 src/sbin/gpt/label.c:1.9
--- src/sbin/gpt/label.c:1.8	Sat Aug 27 17:38:16 2011
+++ src/sbin/gpt/label.c	Sat Apr 13 16:48:03 2013
@@ -29,7 +29,7 @@
 __FBSDID("$FreeBSD: src/sbin/gpt/label.c,v 1.3 2006/10/04 18:20:25 marcel Exp $");
 #endif
 #ifdef __RCSID
-__RCSID("$NetBSD: label.c,v 1.8 2011/08/27 17:38:16 joerg Exp $");
+__RCSID("$NetBSD: label.c,v 1.9 2013/04/13 16:48:03 jakllsch Exp $");
 #endif
 
 #include <sys/types.h>
@@ -133,7 +133,7 @@ label(int fd)
 		ent = (void*)((char*)lbt->map_data + i *
 		    le32toh(hdr->hdr_entsz));
 
-		/* Label the secundary entry. */
+		/* Label the secondary entry. */
 		utf8_to_utf16(name, ent->ent_name, 36);
 
 		hdr->hdr_crc_table = htole32(crc32(lbt->map_data,

Index: src/sbin/gpt/remove.c
diff -u src/sbin/gpt/remove.c:1.6 src/sbin/gpt/remove.c:1.7
--- src/sbin/gpt/remove.c:1.6	Sat Aug 27 17:38:16 2011
+++ src/sbin/gpt/remove.c	Sat Apr 13 16:48:03 2013
@@ -29,7 +29,7 @@
 __FBSDID("$FreeBSD: src/sbin/gpt/remove.c,v 1.10 2006/10/04 18:20:25 marcel Exp $");
 #endif
 #ifdef __RCSID
-__RCSID("$NetBSD: remove.c,v 1.6 2011/08/27 17:38:16 joerg Exp $");
+__RCSID("$NetBSD: remove.c,v 1.7 2013/04/13 16:48:03 jakllsch Exp $");
 #endif
 
 #include <sys/types.h>
@@ -132,7 +132,7 @@ rem(int fd)
 		ent = (void*)((char*)lbt->map_data + i *
 		    le32toh(hdr->hdr_entsz));
 
-		/* Remove the secundary entry. */
+		/* Remove the secondary entry. */
 		uuid_create_nil((uuid_t *)&ent->ent_type, NULL);
 
 		hdr->hdr_crc_table = htole32(crc32(lbt->map_data,

Reply via email to