From f99c93ec57691a393b4ae5ba57176b98f33efc17 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sun, 5 Dec 2004 16:29:27 +0000 Subject: r4070: move some defines from asn_1.h to the places they belong to metze (This used to be commit ab2c2f27e1c61516e885f02bf26350f97209057a) --- source4/utils/ntlm_auth.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source4/utils') diff --git a/source4/utils/ntlm_auth.c b/source4/utils/ntlm_auth.c index 23586b1db5..448559e350 100644 --- a/source4/utils/ntlm_auth.c +++ b/source4/utils/ntlm_auth.c @@ -27,7 +27,6 @@ #include "system/passwd.h" #include "lib/cmdline/popt_common.h" #include "auth/auth.h" -#include "asn_1.h" #undef DBGC_CLASS #define DBGC_CLASS DBGC_WINBIND @@ -377,7 +376,7 @@ static void manage_gensec_request(enum stdio_helper_mode stdio_helper_mode, switch (stdio_helper_mode) { case GSS_SPNEGO_CLIENT: case GSS_SPNEGO_SERVER: - nt_status = gensec_start_mech_by_oid(*gensec_state, OID_SPNEGO); + nt_status = gensec_start_mech_by_oid(*gensec_state, GENSEC_OID_SPNEGO); if (!in.length) { first = True; } @@ -387,7 +386,7 @@ static void manage_gensec_request(enum stdio_helper_mode stdio_helper_mode, first = True; } case SQUID_2_5_NTLMSSP: - nt_status = gensec_start_mech_by_oid(*gensec_state, OID_NTLMSSP); + nt_status = gensec_start_mech_by_oid(*gensec_state, GENSEC_OID_NTLMSSP); break; default: abort(); -- cgit