pkcs15-tool: initialize 'opt_auth_id' consistently.

All the other option values are initialized to NULL, so do the same to
opt_auth_id.

(Although, as they're all static globals, they should be set to 0 at
runtime anyway, I think...)

Signed-Off-By: Anthony Foiani <anthony.foiani@gmail.com>
This commit is contained in:
Anthony Foiani 2012-12-08 14:09:06 -07:00
parent 98ca66b1a0
commit f7c12574ee
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ static const char *app_name = "pkcs15-tool";
static int opt_wait = 0;
static int opt_no_cache = 0;
static char * opt_auth_id;
static char * opt_auth_id = NULL;
static char * opt_reader = NULL;
static char * opt_cert = NULL;
static char * opt_data = NULL;