mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
gpg: Allow to cache the mbox in a user id struct.
* g10/packet.h (PKT_user_id): Add field 'mbox'. * g10/free-packet.c (free_user_id): Free that. -- This will be required by the coming import filter. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
d8bce478be
commit
f015552374
@ -311,6 +311,7 @@ free_user_id (PKT_user_id *uid)
|
||||
free_attributes(uid);
|
||||
xfree (uid->prefs);
|
||||
xfree (uid->namehash);
|
||||
xfree (uid->mbox);
|
||||
xfree (uid);
|
||||
}
|
||||
|
||||
|
@ -291,6 +291,7 @@ typedef struct
|
||||
unsigned int ks_modify:1;
|
||||
unsigned int compacted:1;
|
||||
} flags;
|
||||
char *mbox; /* NULL or the result of mailbox_from_userid. */
|
||||
/* The text contained in the user id packet, which is normally the
|
||||
name and email address of the key holder (See RFC 4880 5.11).
|
||||
(Serialized.). For convenience an extra Nul is always appended. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user