Merge pull request #276 from asmw/fix_return

openpgp-tool: Return EXIT_SUCCESS if no error occurs
This commit is contained in:
Frank Morgner 2014-11-05 10:57:26 +01:00
commit d00d7b3498
1 changed files with 1 additions and 1 deletions

View File

@ -456,7 +456,7 @@ int main(int argc, char **argv)
sc_card_t *card = NULL;
int r;
int argind = 0;
int exit_status = EXIT_FAILURE;
int exit_status = EXIT_SUCCESS;
/* decode options */
argind = decode_options(argc, argv);