aboutsummaryrefslogtreecommitdiffstats
path: root/g10/gpgv.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2004-11-24 05:25:03 +0000
committerDavid Shaw <[email protected]>2004-11-24 05:25:03 +0000
commit04b715e4dad23f85a38cf72950fbc96e3b33b646 (patch)
tree7cefccf89f270fe8afa106116c2f93fad5186129 /g10/gpgv.c
parent(S_IRGRP) [HAVE_DOSISH_SYSTEM]: Define to 0. (diff)
downloadgnupg-04b715e4dad23f85a38cf72950fbc96e3b33b646.tar.gz
gnupg-04b715e4dad23f85a38cf72950fbc96e3b33b646.zip
* trustdb.h, trustdb.c (uid_trust_string_fixed): New. Return a fixed-size
translatable string similar to trust_value_to_string. This allows for easier lining up of displays. * keyedit.c (show_key_with_all_names), keylist.c (list_keyblock_print): Use it here to print validity strings. * gpgv.c: Stub.
Diffstat (limited to 'g10/gpgv.c')
-rw-r--r--g10/gpgv.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/g10/gpgv.c b/g10/gpgv.c
index 2a316c3c7..7778953d1 100644
--- a/g10/gpgv.c
+++ b/g10/gpgv.c
@@ -251,7 +251,12 @@ trust_value_to_string (unsigned int value)
return "err";
}
-/* Stub: */
+const char *
+uid_trust_string_fixed(PKT_public_key *key,PKT_user_id *uid)
+{
+ return "err";
+}
+
int
get_ownertrust_info (PKT_public_key *pk)
{