diff options
author | David Shaw <[email protected]> | 2005-10-14 04:07:13 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2005-10-14 04:07:13 +0000 |
commit | 6c4e740a59d9fd6db5cafbda2740b328aea0675d (patch) | |
tree | 3da0e67782040962ed5a0733102b3da74f32210b /g10/misc.c | |
parent | * options.h, getkey.c (merge_selfsigs_subkey), gpg.c (main), sig-check.c (diff) | |
download | gnupg-6c4e740a59d9fd6db5cafbda2740b328aea0675d.tar.gz gnupg-6c4e740a59d9fd6db5cafbda2740b328aea0675d.zip |
* keyedit.c (keyedit_menu, menu_backsign): New "backsign" command to
add 0x19 backsigs to old keys that don't have them.
* misc.c (parse_options): Fix build warning.
* main.h, keygen.c (make_backsig): Make public.
Diffstat (limited to 'g10/misc.c')
-rw-r--r-- | g10/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/misc.c b/g10/misc.c index a50ab884e..c5b97740c 100644 --- a/g10/misc.c +++ b/g10/misc.c @@ -979,7 +979,7 @@ parse_options(char *str,unsigned int *options, for(i=0;opts[i].name;i++) if(opts[i].help) printf("%s%*s%s\n",opts[i].name, - maxlen+2-strlen(opts[i].name),"",_(opts[i].help)); + maxlen+2-(int)strlen(opts[i].name),"",_(opts[i].help)); g10_exit(0); } |