diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2012-05-24 20:43:17 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2012-05-29 21:36:25 +0200 |
commit | 40e47d08af8d287d1e8b66ffb96e3ed051516403 (patch) | |
tree | 5de812322f394cb34e0240ac8b8b51299d2fe6ae /source4 | |
parent | cee146ff7c2250d3c723f19357fd1c8541191d08 (diff) | |
download | samba-40e47d08af8d287d1e8b66ffb96e3ed051516403.tar.gz samba-40e47d08af8d287d1e8b66ffb96e3ed051516403.tar.bz2 samba-40e47d08af8d287d1e8b66ffb96e3ed051516403.zip |
s4:dbchecker - handle the "none" case correctly
This means that *no* fixing will be done, also the first possible one
will be omitted as well.
Reviewed-by: abartlet
Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Tue May 29 21:36:25 CEST 2012 on sn-devel-104
Diffstat (limited to 'source4')
-rw-r--r-- | source4/scripting/python/samba/dbchecker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/dbchecker.py b/source4/scripting/python/samba/dbchecker.py index 587d63c7cb..95be1ceb08 100644 --- a/source4/scripting/python/samba/dbchecker.py +++ b/source4/scripting/python/samba/dbchecker.py @@ -110,7 +110,7 @@ class dbcheck(object): return True if c == 'NONE': setattr(self, all_attr, 'NONE') - return True + return False return c def do_modify(self, m, controls, msg, validate=True): |