diff options
Diffstat (limited to 'g10/keylist.c')
-rw-r--r-- | g10/keylist.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/g10/keylist.c b/g10/keylist.c index 7f724264e..6618a7fbe 100644 --- a/g10/keylist.c +++ b/g10/keylist.c @@ -1,6 +1,6 @@ /* keylist.c * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, - * 2008 Free Software Foundation, Inc. + * 2008, 2012 Free Software Foundation, Inc. * * This file is part of GnuPG. * @@ -60,11 +60,11 @@ public_key_list( STRLIST list ) { if(opt.with_colons) { - byte trust_model,marginals,completes,cert_depth; + byte trust_model,marginals,completes,cert_depth,min_cert_level; ulong created,nextcheck; read_trust_options(&trust_model,&created,&nextcheck, - &marginals,&completes,&cert_depth); + &marginals,&completes,&cert_depth,&min_cert_level); printf("tru:"); @@ -80,6 +80,8 @@ public_key_list( STRLIST list ) printf("c"); if(cert_depth!=opt.max_cert_depth) printf("d"); + if(min_cert_level!=opt.min_cert_level) + printf("l"); } printf(":%d:%lu:%lu",trust_model,created,nextcheck); |