* rungpg.c (_gpgme_gpg_op_keylist_ext): Skip empty string
patterns. Reported by Stéphane Corthésy.
+ * key.c (gpgme_key_get_as_xml): Add OTRUST attribute. Requested
+ by Stéphane Corthésy.
+ (gpgme_key_get_string_attr): Add GPGME_ATTR_SIG_SUMMARY case to
+ silence gcc warning.
+
2002-07-03 Marcus Brinkmann <marcus@g10code.de>
* gpgme.c (gpgme_set_io_cbs): Deal with CTX being NULL.
add_tag_and_uint (d, "len", key->keys.key_len);
add_tag_and_time (d, "created", key->keys.timestamp);
add_tag_and_time (d, "expire", key->keys.expires_at);
+ add_tag_and_string (d, "otrust",
+ gpgme_key_get_string_attr (key, GPGME_ATTR_OTRUST,
+ NULL, 0));
if (key->issuer_serial)
add_tag_and_string (d, "serial", key->issuer_serial);
if (key->issuer_name)
val = key->chain_id;
break;
case GPGME_ATTR_SIG_STATUS:
+ case GPGME_ATTR_SIG_SUMMARY:
case GPGME_ATTR_ERRTOK:
/* Not of any use here. */
break;