aboutsummaryrefslogtreecommitdiffstats
path: root/g10/g10.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2004-10-21 19:18:47 +0000
committerDavid Shaw <[email protected]>2004-10-21 19:18:47 +0000
commit65077adf83ff7cd0f3d7b816f8c82d0565b1f34e (patch)
tree6535526fea7fdd8055fbaa48c64fb147ef012d48 /g10/g10.c
parent* acinclude.m4: aclocal 1.9 wants quoting on AC_DEFUN arguments. (diff)
downloadgnupg-65077adf83ff7cd0f3d7b816f8c82d0565b1f34e.tar.gz
gnupg-65077adf83ff7cd0f3d7b816f8c82d0565b1f34e.zip
* options.h, g10.c (main), mainproc.c (check_sig_and_print): Rename
verify-option show-validity to show-uid-validity to match the similar list-option. * app-openpgp.c (verify_chv3): Fix typo.
Diffstat (limited to 'g10/g10.c')
-rw-r--r--g10/g10.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/g10/g10.c b/g10/g10.c
index b70a2c810..160d4cd26 100644
--- a/g10/g10.c
+++ b/g10/g10.c
@@ -1468,8 +1468,9 @@ parse_list_options(char *str)
};
/* C99 allows for non-constant initializers, but we'd like to
- compile everywhere, so fill in the show-sig-subpackets argument
- here. */
+ compile everywhere, so fill in the show-sig-subpackets argument
+ here. Note that if the parse_options array changes, we'll have
+ to change the subscript here. */
lopts[12].value=&subpackets;
if(parse_options(str,&opt.list_options,lopts,1))
@@ -2328,7 +2329,7 @@ main( int argc, char **argv )
{"show-standard-notations",VERIFY_SHOW_STD_NOTATIONS,NULL},
{"show-user-notations",VERIFY_SHOW_USER_NOTATIONS,NULL},
{"show-keyserver-urls",VERIFY_SHOW_KEYSERVER_URLS,NULL},
- {"show-validity",VERIFY_SHOW_VALIDITY,NULL},
+ {"show-uid-validity",VERIFY_SHOW_UID_VALIDITY,NULL},
{"show-unusable-uids",VERIFY_SHOW_UNUSABLE_UIDS,NULL},
{NULL,0,NULL}
};