1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-01 16:23:49 +03:00

r6506: Rename parameter to GetDomPwInfo.

This commit is contained in:
Tim Potter
2005-04-28 06:36:00 +00:00
committed by Gerald (Jerry) Carter
parent f705136558
commit 1542a13493

View File

@@ -195,11 +195,11 @@ class ConnectHandle(SamrHandle):
call_fn(dcerpc.dcerpc_samr_Shutdown, self.pipe, r)
def GetDomPwInfo(self, system_name):
def GetDomPwInfo(self, domain_name):
r = dcerpc.samr_GetDomPwInfo()
r.data_in.domain_name = dcerpc.samr_String()
r.data_in.domain_name.string = system_name
r.data_in.domain_name.string = domain_name
call_fn(dcerpc.dcerpc_samr_GetDomPwInfo, self.pipe, r)