Replace custom isc_boolean_t with C standard bool type
This commit is contained in:
@@ -174,8 +174,8 @@ main(int argc, char *argv[]) {
|
||||
if (pin == NULL)
|
||||
pin = getpass("Enter Pin: ");
|
||||
|
||||
result = pk11_get_session(&pctx, OP_ANY, ISC_TRUE, ISC_TRUE,
|
||||
ISC_TRUE, (const char *) pin, slot);
|
||||
result = pk11_get_session(&pctx, OP_ANY, true, true,
|
||||
true, (const char *) pin, slot);
|
||||
if ((result != ISC_R_SUCCESS) &&
|
||||
(result != PK11_R_NORANDOMSERVICE) &&
|
||||
(result != PK11_R_NODIGESTSERVICE) &&
|
||||
|
||||
Reference in New Issue
Block a user