Home
last modified time | relevance | path

Searched refs:returnCtx (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libldap5/sources/ldap/util/
H A Dlog.c78 LogCtx *returnCtx = NULL; in sundsloginit() local
80 if ((returnCtx = (LogCtx *)malloc(sizeof (LogCtx))) == NULL) in sundsloginit()
82 if ((returnCtx->logfile = strdup(name)) == NULL) { in sundsloginit()
83 free(returnCtx); in sundsloginit()
86 openlog(returnCtx->logfile, OPENLOG_OPTIONS, facility); in sundsloginit()
87 returnCtx->syslogopen = 1; in sundsloginit()
88 pthread_mutex_init(&(returnCtx->log_mutex), NULL); in sundsloginit()
89 returnCtx->log_debug = debug_level; in sundsloginit()
90 returnCtx->log_syslog = syslog_level; in sundsloginit()
91 return (returnCtx); in sundsloginit()