summaryrefslogtreecommitdiff
path: root/source4/scripting
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mdw@samba.org>2012-05-24 20:43:17 +0200
committerMatthias Dieter Wallnöfer <mdw@samba.org>2012-05-29 21:36:25 +0200
commit40e47d08af8d287d1e8b66ffb96e3ed051516403 (patch)
tree5de812322f394cb34e0240ac8b8b51299d2fe6ae /source4/scripting
parentcee146ff7c2250d3c723f19357fd1c8541191d08 (diff)
downloadsamba-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/scripting')
-rw-r--r--source4/scripting/python/samba/dbchecker.py2
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):