(pop_init): change call to authentication function, from a ?:
construct (which toubles some versions of gcc) to if; from Björn Grönvall git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12988 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -394,5 +394,8 @@ pop_init(POP *p,int argcount,char **argmessage)
|
||||
#endif /* DEBUG */
|
||||
|
||||
|
||||
return((p->kerberosp ? krb_authenticate : plain_authenticate)(p, cs));
|
||||
if(p->kerberosp)
|
||||
return krb_authenticate(p, cs);
|
||||
else
|
||||
return plain_authenticate(p, cs);
|
||||
}
|
||||
|
Reference in New Issue
Block a user