Differences From Artifact [8554f45411]:
- File cackey.c — part of check-in [def08b9deb] at 2013-01-16 15:21:31 on branch piv — Updated to determine what kind of authentication to perform based on token present (PIV/CAC) (user: rkeene, size: 198652) [annotate] [blame] [check-ins using]
To Artifact [6f86c48f0e]:
- File cackey.c — part of check-in [8c73344738] at 2013-08-14 04:22:10 on branch piv — Merged in trunk (user: rkeene, size: 198749) [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"); } |
︙ |