Searched defs:fd_audit (Results 1 - 1 of 1) sorted by relevance

/forgerock/web-agents-v4/source/
H A Dlog.c91 int fd_audit; member in struct:am_log::log_files
240 f->fd_audit = -1;
247 f->fd_audit = -1;
252 if (f->fd_audit == -1 && f->fd_debug == -1) {
257 f->fd_audit = _open(f->name_audit, _O_CREAT | _O_WRONLY | _O_APPEND | _O_BINARY,
263 if (f->fd_audit != -1 && stat(f->name_audit, &st) == 0) {
270 f->fd_audit = open(f->name_audit, O_CREAT | O_WRONLY | O_APPEND, S_IWUSR | S_IRUSR);
276 if (f->fd_audit != -1 && stat(f->name_audit, &st) == 0) {
286 f->fd_debug = f->fd_audit = -1;
287 } else if (f->fd_audit
[all...]

Completed in 471 milliseconds