From f22b817d3fdac2c6a98b3297f758aea554785513 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 20 Nov 1998 20:44:21 +0000 Subject: acconfig.h configure configure.in include/config.h.in: Added -lsec and -lsecurity checks in a more sane way. rpc_client/cli_netlogon.c: Removed correct bits check to see if this works with an NT3.51 PDC. rpc_parse/parse_samr.c: Fixed compile warnings. Jeremy. (This used to be commit 34d8f4b1c4d59ab3c009360fc67eef9361dd859b) --- source3/rpc_client/cli_netlogon.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'source3/rpc_client') diff --git a/source3/rpc_client/cli_netlogon.c b/source3/rpc_client/cli_netlogon.c index ed2f391256..099c81496a 100644 --- a/source3/rpc_client/cli_netlogon.c +++ b/source3/rpc_client/cli_netlogon.c @@ -169,6 +169,12 @@ password ?).\n", cli->desthost )); } } +#if 0 + /* + * Try commenting this out to see if this makes the connect + * work for a NT 3.51 PDC. JRA. + */ + if (ok && r_a.srv_flgs.neg_flags != q_a.clnt_flgs.neg_flags) { /* report different neg_flags */ @@ -176,6 +182,7 @@ password ?).\n", cli->desthost )); q_a.clnt_flgs.neg_flags, r_a.srv_flgs.neg_flags)); ok = False; } +#endif } -- cgit