diff options
Diffstat (limited to 'source4/scripting')
-rwxr-xr-x | source4/scripting/devel/getncchanges | 2 | ||||
-rwxr-xr-x | source4/scripting/devel/repl_cleartext_pwd.py | 2 | ||||
-rw-r--r-- | source4/scripting/python/samba/drs_utils.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/source4/scripting/devel/getncchanges b/source4/scripting/devel/getncchanges index 736e3db440..d401c82869 100755 --- a/source4/scripting/devel/getncchanges +++ b/source4/scripting/devel/getncchanges @@ -177,4 +177,4 @@ if __name__ == "__main__": nb_iter += 1 if ctr.more_data == 0 or opts.nb_iter == nb_iter: break - req8.highwatermark.tmp_highest_usn = ctr.new_highwatermark.tmp_highest_usn + req8.highwatermark = ctr.new_highwatermark diff --git a/source4/scripting/devel/repl_cleartext_pwd.py b/source4/scripting/devel/repl_cleartext_pwd.py index 5eebc8689d..9637d885e0 100755 --- a/source4/scripting/devel/repl_cleartext_pwd.py +++ b/source4/scripting/devel/repl_cleartext_pwd.py @@ -406,4 +406,4 @@ if __name__ == "__main__": print "# up to usn[%d]" % (ctr.new_highwatermark.highest_usn) break print "# up to tmp_usn[%d]" % (ctr.new_highwatermark.highest_usn) - req8.highwatermark.tmp_highest_usn = ctr.new_highwatermark.tmp_highest_usn + req8.highwatermark = ctr.new_highwatermark diff --git a/source4/scripting/python/samba/drs_utils.py b/source4/scripting/python/samba/drs_utils.py index 481eec2920..6e2cfea9ab 100644 --- a/source4/scripting/python/samba/drs_utils.py +++ b/source4/scripting/python/samba/drs_utils.py @@ -252,4 +252,4 @@ class drs_Replicate(object): schema=schema, req_level=req_level, req=req) if ctr.more_data == 0: break - req.highwatermark.tmp_highest_usn = ctr.new_highwatermark.tmp_highest_usn + req.highwatermark = ctr.new_highwatermark |