diff options
author | David Shaw <[email protected]> | 2003-03-04 15:24:12 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-03-04 15:24:12 +0000 |
commit | 909f6a0637b7111c294e5f6f37e4c3a0561bcd99 (patch) | |
tree | e1a4f448faaaee207c03d8813a15035c0e1c7f8b /g10/keyserver.c | |
parent | * keyserver.c (keyserver_spawn): Include various pieces of information (diff) | |
download | gnupg-909f6a0637b7111c294e5f6f37e4c3a0561bcd99.tar.gz gnupg-909f6a0637b7111c294e5f6f37e4c3a0561bcd99.zip |
* trustdb.c (validate_keys): Mask the ownertrust when building the list of
fully valid keys so that disabled keys are still counted in the web of
trust. (get_ownertrust_with_min): Do the same for the minimum ownertrust
calculation.
* parse-packet.c (dump_sig_subpkt): Show the notation names for
not-human-readable notations. Fix cosmetic off-by-one length counter.
* options.skel: Add explantion and commented-out
"no-mangle-dos-filenames".
* mainproc.c (proc_encrypted): Make string translatable.
* keyserver.c (keyserver_spawn): Quote ':', '%', and any 8-bit characters
in the uid strings sent to the keyserver helper.
* keyring.c (keyring_rebuild_cache): Lock the keyring while rebuilding the
signature caches to prevent another gpg from tampering with the temporary
copy.
* keygen.c (keygen_set_std_prefs): Include AES192 and AES256 in default
prefs.
* keyedit.c (show_prefs): Make strings translatable.
* keydb.c: Double the maximum number of keyrings to 40.
* gpgv.c (main): Fix bug #113 - gpgv should accept the
--ignore-time-conflict option.
* g10.c (main): --openpgp disables --pgpX. Double the amount of secure
memory to 32k (keys are getting bigger these days).
* Makefile.am: Makefile.am: Use @CAPLIBS@ to link in -lcap if we are using
capabilities.
Diffstat (limited to 'g10/keyserver.c')
-rw-r--r-- | g10/keyserver.c | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/g10/keyserver.c b/g10/keyserver.c index b153bc49a..4947293d8 100644 --- a/g10/keyserver.c +++ b/g10/keyserver.c @@ -862,12 +862,26 @@ keyserver_spawn(int action,STRLIST list, case PKT_USER_ID: { PKT_user_id *uid=node->pkt->pkt.user_id; + int r; if(uid->attrib_data) continue; - fprintf(spawn->tochild,"uid:%s:%u:%u:", - uid->name,uid->created,uid->expiredate); + fprintf(spawn->tochild,"uid:"); + + /* Quote ':', '%', and any 8-bit + characters */ + for(r=0;r<uid->len;r++) + { + if(uid->name[r]==':' || uid->name[r]=='%' + || uid->name[r]&0x80) + fprintf(spawn->tochild,"%%%02X",uid->name[r]); + else + fprintf(spawn->tochild,"%c",uid->name[r]); + } + + fprintf(spawn->tochild,":%u:%u:", + uid->created,uid->expiredate); if(uid->is_revoked) fprintf(spawn->tochild,"r"); |