mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
Bug 494969, GSSAPI negotiate authentication may fail if /etc/resolv.conf changes
r=cbiesinger Second checkin attempt, adding the obviously missing #ifdef needed for cross platform portability.
This commit is contained in:
parent
51345f632c
commit
7e335d7e89
@ -72,6 +72,10 @@ typedef KLStatus (*KLCacheHasValidTickets_type)(
|
||||
char **);
|
||||
#endif
|
||||
|
||||
#if defined(HAVE_RES_NINIT)
|
||||
#include <resolv.h>
|
||||
#endif
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
// We define GSS_C_NT_HOSTBASED_SERVICE explicitly since it may be referenced
|
||||
@ -416,6 +420,9 @@ nsAuthGSSAPI::GetNextToken(const void *inToken,
|
||||
input_token.value = (void *)mServiceName.get();
|
||||
input_token.length = mServiceName.Length() + 1;
|
||||
|
||||
#if defined(HAVE_RES_NINIT)
|
||||
res_ninit(&_res);
|
||||
#endif
|
||||
major_status = gss_import_name_ptr(&minor_status,
|
||||
&input_token,
|
||||
&gss_c_nt_hostbased_service,
|
||||
|
Loading…
Reference in New Issue
Block a user