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

/illumos-gate/usr/src/lib/libldap5/sources/ldap/util/
H A Dlog.c80 LogCtx *returnCtx = NULL; local
82 if ((returnCtx = (LogCtx *)malloc(sizeof (LogCtx))) == NULL)
84 if ((returnCtx->logfile = strdup(name)) == NULL) {
85 free(returnCtx);
88 openlog(returnCtx->logfile, OPENLOG_OPTIONS, facility);
89 returnCtx->syslogopen = 1;
90 pthread_mutex_init(&(returnCtx->log_mutex), NULL);
91 returnCtx->log_debug = debug_level;
92 returnCtx->log_syslog = syslog_level;
93 return (returnCtx);
[all...]

Completed in 45 milliseconds