diff options
author | Matt Johnston <matt@ucc.asn.au> | 2005-07-08 11:32:09 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2005-07-08 11:32:09 +0000 |
commit | fb1fd7f6f4e5510b31adc1c0ab1d1f025e77ffbe (patch) | |
tree | 46607153b6fe9c821409d1ef896852170be2772d /auth.h | |
parent | 109b87d2a31167727cc0c5616ea05f9224ad7d13 (diff) |
rename PubkeyList to SignKeyList for clarity
--HG--
extra : convert_revision : 838e354daf3ae9a1dce710526c37fec9859ee6d1
Diffstat (limited to 'auth.h')
-rw-r--r-- | auth.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 */ |