OpenPGP: fix pretty name for gender code 39 in openpgp-tool

- use the same term that GnuPG uses
This commit is contained in:
Peter Marschall 2015-10-12 16:40:59 +02:00
parent e79f1f4b01
commit 392bc08d86
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ static char *prettify_gender(char *str)
case '0': return "unknown";
case '1': return "male";
case '2': return "female";
case '9': return "not applicable";
case '9': return "not announced";
}
}
return NULL;