diff options
Diffstat (limited to '')
| -rw-r--r-- | tests/gpg/t-gpgconf.c | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/tests/gpg/t-gpgconf.c b/tests/gpg/t-gpgconf.c index 8d9fb200..8e487b7a 100644 --- a/tests/gpg/t-gpgconf.c +++ b/tests/gpg/t-gpgconf.c @@ -104,7 +104,11 @@ dump_arg (int type, gpgme_conf_arg_t arg)  	case GPGME_CONF_STRING:  	case GPGME_CONF_PATHNAME:  	case GPGME_CONF_LDAP_SERVER: -	  printf ("%s", arg->value.string); +        case GPGME_CONF_KEY_FPR: +        case GPGME_CONF_PUB_KEY: +        case GPGME_CONF_SEC_KEY: +        case GPGME_CONF_ALIAS_LIST: +	  printf ("`%s'", arg->value.string);  	  break;  	case GPGME_CONF_UINT32: | 
