rename PubkeyList to SignKeyList for clarity

--HG--
extra : convert_revision : 838e354daf3ae9a1dce710526c37fec9859ee6d1
This commit is contained in:
Matt Johnston
2005-07-08 11:32:09 +00:00
parent 109b87d2a3
commit fb1fd7f6f4
7 changed files with 27 additions and 26 deletions

8
auth.h
View File

@@ -84,13 +84,13 @@ struct AuthState {
};
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 */