diff auth.h @ 215:aad4b3f58556

rename PubkeyList to SignKeyList for clarity
author Matt Johnston <matt@ucc.asn.au>
date Fri, 08 Jul 2005 11:32:09 +0000
parents 3b2a5a1c4347
children ca7e76d981d9 bf64e666f99b
line wrap: on
line diff
--- a/auth.h	Fri Jul 08 11:30:54 2005 +0000
+++ b/auth.h	Fri Jul 08 11:32:09 2005 +0000
@@ -84,13 +84,13 @@
 
 };
 
-struct PubkeyList;
-/* A singly linked list of pubkeys */
-struct PubkeyList {
+struct SignKeyList;
+/* A singly linked list of signing keys */
+struct SignKeyList {
 
 	sign_key *key;
 	int type; /* The type of key */
-	struct PubkeyList *next;
+	struct SignKeyList *next;
 	/* filename? or the buffer? for encrypted keys, so we can later get
 	 * the private key portion */