Skip to content

Commit

Permalink
Fix typos in commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrossard committed Sep 2, 2016
1 parent 3f27761 commit 03d55dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cryptoki.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@ static CK_RV init_module(void)
if(dic) {
z = iniparser_getstring(dic, "token:module", NULL);
if(z) {
strdup(z);
z = strdup(z);
}
data_path = iniparser_getstring(dic, "token:data", NULL);
if(data_path) {
strdup(data_path);
data_path = strdup(data_path);
}
iniparser_freedict(dic);
}
Expand Down

0 comments on commit 03d55dd

Please # to comment.