From: Matthias Dieter Wallnöfer Date: Sun, 22 Nov 2009 14:50:36 +0000 (+0100) Subject: s4:netlogon RPC - Fix up a comment X-Git-Tag: samba-4.0.0alpha9~263 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1fb28b0204038e5cef63c2f1fbdc2b5424570e44;p=thirdparty%2Fsamba.git s4:netlogon RPC - Fix up a comment Now we have Windows 7 released so don't refer to a beta anymore. --- 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; }