aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2012-05-24 08:11:49 +0000
committerWerner Koch <[email protected]>2012-05-24 08:11:49 +0000
commitf8a8c71c41bc1893df8af6ce522876ccbf6240a9 (patch)
treedf74202ce82dab3887ba299c4ca693a07d796b2d
parentSwitch to the new automagic beta numbering scheme. (diff)
downloadgnupg-f8a8c71c41bc1893df8af6ce522876ccbf6240a9.tar.gz
gnupg-f8a8c71c41bc1893df8af6ce522876ccbf6240a9.zip
Fix type conflict warning.
* g10/keylist.c: Change min_cert_level to a byte.
Diffstat (limited to '')
-rw-r--r--g10/keylist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/keylist.c b/g10/keylist.c
index cd868bfee..e8ccabc71 100644
--- a/g10/keylist.c
+++ b/g10/keylist.c
@@ -66,8 +66,8 @@ public_key_list (ctrl_t ctrl, strlist_t list, int locate_mode)
{
if (opt.with_colons)
{
- byte trust_model, marginals, completes, cert_depth;
- ulong created, nextcheck, min_cert_level;
+ byte trust_model, marginals, completes, cert_depth, min_cert_level;
+ ulong created, nextcheck;
read_trust_options (&trust_model, &created, &nextcheck,
&marginals, &completes, &cert_depth, &min_cert_level);