(pop_init): handle krb5_init_context failure consistently
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@9430 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -263,10 +263,16 @@ pop_init(POP *p,int argcount,char **argmessage)
|
|||||||
gethostname(p->myhost,MaxHostNameLen);
|
gethostname(p->myhost,MaxHostNameLen);
|
||||||
|
|
||||||
#ifdef KRB5
|
#ifdef KRB5
|
||||||
krb5_init_context (&p->context);
|
{
|
||||||
|
krb5_error_code ret;
|
||||||
|
|
||||||
krb5_openlog(p->context, p->myname, &p->logf);
|
ret = krb5_init_context (&p->context);
|
||||||
krb5_set_warn_dest(p->context, p->logf);
|
if (ret)
|
||||||
|
errx (1, "krb5_init_context failed: %d", ret);
|
||||||
|
|
||||||
|
krb5_openlog(p->context, p->myname, &p->logf);
|
||||||
|
krb5_set_warn_dest(p->context, p->logf);
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
/* Open the log file */
|
/* Open the log file */
|
||||||
roken_openlog(p->myname,POP_LOGOPTS,POP_FACILITY);
|
roken_openlog(p->myname,POP_LOGOPTS,POP_FACILITY);
|
||||||
|
|||||||
Reference in New Issue
Block a user