diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-11-05 18:57:17 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-11-05 23:42:09 +1100 |
commit | 351312d8b870698a44dc1a9766ce7aeec7028602 (patch) | |
tree | 9391658f6f3ab4fd80ab7e717791fb124c9ef515 /source4/scripting | |
parent | 158ae8a1485a7d0d27b8a0cbdd98993f9a98ff67 (diff) | |
download | samba-351312d8b870698a44dc1a9766ce7aeec7028602.tar.gz samba-351312d8b870698a44dc1a9766ce7aeec7028602.tar.bz2 samba-351312d8b870698a44dc1a9766ce7aeec7028602.zip |
s4-join: don't print all the NDR packets by default
Diffstat (limited to 'source4/scripting')
-rw-r--r-- | source4/scripting/python/samba/join.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/join.py b/source4/scripting/python/samba/join.py index 9e8a6965fa..4aaef316df 100644 --- a/source4/scripting/python/samba/join.py +++ b/source4/scripting/python/samba/join.py @@ -205,7 +205,7 @@ class dc_join: def drsuapi_connect(ctx): '''make a DRSUAPI connection to the server''' - binding_string = "ncacn_ip_tcp:%s[seal,print]" % ctx.server + binding_string = "ncacn_ip_tcp:%s[seal]" % ctx.server ctx.drsuapi = drsuapi.drsuapi(binding_string, ctx.lp, ctx.creds) ctx.drsuapi_handle = drs_utils.drs_DsBind(ctx.drsuapi) |