diff options
author | Tim Potter <tpot@samba.org> | 2004-09-19 04:59:56 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:50 -0500 |
commit | a50931e7288131b92161a56dc52e22fa2fe6050b (patch) | |
tree | caf0d70bdefc76deb99c93e2f74b3ff4fdbf4cfc | |
parent | 370dad0fbf51d4866b205d9721db86d4f51896ae (diff) | |
download | samba-a50931e7288131b92161a56dc52e22fa2fe6050b.tar.gz samba-a50931e7288131b92161a56dc52e22fa2fe6050b.tar.bz2 samba-a50931e7288131b92161a56dc52e22fa2fe6050b.zip |
r2414: samr_Connect.system_name is now an array.
(This used to be commit e1166c210004b090c5922b2f9b10b86ebc3fc11d)
-rwxr-xr-x | source4/scripting/swig/torture/samr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/swig/torture/samr.py b/source4/scripting/swig/torture/samr.py index f3be954d65..d3b9a4dd47 100755 --- a/source4/scripting/swig/torture/samr.py +++ b/source4/scripting/swig/torture/samr.py @@ -8,7 +8,7 @@ def test_Connect(handle): print 'testing samr_Connect' r = {} - r['system_name'] = '\0\0' + r['system_name'] = [0] r['access_mask'] = 0x02000000 result = dcerpc.samr_Connect(pipe, r) |