1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

Ask for the keysize when generating a new card key.

This commit is contained in:
Werner Koch 2009-08-05 11:24:43 +00:00
parent fcfcc611e7
commit e57d2a8630
7 changed files with 222 additions and 20 deletions

View file

@ -24,8 +24,12 @@
#include "i18n.h"
#include "util.h"
/* Check the string S for a YES or NO answer and take care of
localization. If no valid string is given the value of DEF_ANSWER
is returned. Returns 1 for yes and 0 for no. */
int
answer_is_yes_no_default( const char *s, int def_answer )
answer_is_yes_no_default (const char *s, int def_answer)
{
/* TRANSLATORS: See doc/TRANSLATE about this string. */
const char *long_yes = _("yes");