Differences From Artifact [1a206186e3]:
- File cackey.c — part of check-in [a68e222d00] at 2013-08-14 04:16:58 on branch protected-auth-path — Added return value printing for C_Login() and removed requirement that PIN not be provided if using protected authentication path (some tools provide it anyway) (user: rkeene, size: 201416) [annotate] [blame] [check-ins using]
To Artifact [745d36081e]:
- File cackey.c — part of check-in [5469f9a4d0] at 2013-08-14 04:22:53 on branch protected-auth-path — Merged in updates (user: rkeene, size: 201513) [annotate] [blame] [check-ins using] [more...]
︙ | |||
266 267 268 269 270 271 272 273 274 275 276 277 278 279 | 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 | + + + + + + | logfile = strchr(logfile, '='); if (logfile == NULL) { logfile = getenv("CACKEY_DEBUG_LOGFILE"); } else { logfile++; } } #ifdef CACKEY_DEBUG_LOGFILE if (logfile == NULL) { logfile = CACKEY_DEBUG_LOGFILE; } #endif if (logfile != NULL) { CACKEY_DEBUG_PRINTF("Found log file: %s", logfile); fd = fopen(logfile, "a"); } |
︙ |