From 1fb28b0204038e5cef63c2f1fbdc2b5424570e44 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Matthias=20Dieter=20Walln=C3=B6fer?= Date: Sun, 22 Nov 2009 15:50:36 +0100 Subject: [PATCH] s4:netlogon RPC - Fix up a comment Now we have Windows 7 released so don't refer to a beta anymore. --- source4/rpc_server/netlogon/dcerpc_netlogon.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/source4/rpc_server/netlogon/dcerpc_netlogon.c b/source4/rpc_server/netlogon/dcerpc_netlogon.c index d59cb6fb823..1cdb1722256 100644 --- a/source4/rpc_server/netlogon/dcerpc_netlogon.c +++ b/source4/rpc_server/netlogon/dcerpc_netlogon.c @@ -1413,10 +1413,11 @@ static WERROR dcesrv_netr_DsRGetDCNameEx2(struct dcesrv_call_state *dce_call, TA return WERR_DS_UNAVAILABLE; } - /* Win7-beta will send the domain name in the form the user typed, so we have to cope - with both the short and long form here */ - if (r->in.domain_name != NULL && !lp_is_my_domain_or_realm(dce_call->conn->dce_ctx->lp_ctx, - r->in.domain_name)) { + /* Windows 7 sends the domain name in the form the user typed, so we + * have to cope with both the short and long form here */ + if (r->in.domain_name != NULL && + !lp_is_my_domain_or_realm(dce_call->conn->dce_ctx->lp_ctx, + r->in.domain_name)) { return WERR_NO_SUCH_DOMAIN; } -- 2.34.1