diff options
author | David Shaw <[email protected]> | 2002-08-20 12:45:57 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-08-20 12:45:57 +0000 |
commit | fa88fe9aaf3ff884cd7a519168299d74888b2d05 (patch) | |
tree | 45878a1035fb32217cd0ff561190eb0646f96a3f /g10/sign.c | |
parent | * gpgkeys_hkp.c (get_key, parse_hkp_index): Bring over latest code from (diff) | |
download | gnupg-fa88fe9aaf3ff884cd7a519168299d74888b2d05.tar.gz gnupg-fa88fe9aaf3ff884cd7a519168299d74888b2d05.zip |
* keylist.c, keyedit.c, keyserver.c, sign.c: Some TODOs and comments.
* export.c (do_export_stream): Fix noop bug in exporting sensitive
revocation keys.
* pkclist.c (do_edit_ownertrust): Comment out the option for showing trust
paths until it can be implemented.
Diffstat (limited to 'g10/sign.c')
-rw-r--r-- | g10/sign.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/g10/sign.c b/g10/sign.c index e4fcc5f34..fe242b8da 100644 --- a/g10/sign.c +++ b/g10/sign.c @@ -1165,7 +1165,9 @@ make_keysig_packet( PKT_signature **ret_sig, PKT_public_key *pk, /* If you are making a signature on a v4 key using your v3 key, it doesn't make sense to generate a v3 sig. After all, no v3-only PGP implementation could understand the v4 key in the first - place. */ + place. Note that this implies that a signature on an attribute + uid is usually going to be v4 as well, since they are not + generally found on v3 keys. */ if (sigversion < pk->version) sigversion = pk->version; |