Merge pull request #610 from iceman1001/master

chg: make version printing obey verbose flag
This commit is contained in:
Philippe Teuwen 2020-07-01 21:48:47 +02:00 committed by GitHub
commit fc51c8662b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,10 +97,6 @@ main(int argc, const char *argv[])
exit(EXIT_FAILURE);
}
// Display libnfc version
acLibnfcVersion = nfc_version();
printf("%s uses libnfc %s\n", argv[0], acLibnfcVersion);
// Get commandline options
for (arg = 1; arg < argc; arg++) {
if (0 == strcmp(argv[arg], "-h")) {
@ -126,6 +122,13 @@ main(int argc, const char *argv[])
}
}
// Display libnfc version
if (verbose) {
acLibnfcVersion = nfc_version();
printf("%s uses libnfc %s\n", argv[0], acLibnfcVersion);
}
/* Lazy way to open an NFC device */
#if 0
pnd = nfc_open(context, NULL);