diff options
author | Nadezhda Ivanova <nivanova@samba.org> | 2010-11-25 14:02:51 +0200 |
---|---|---|
committer | Nadezhda Ivanova <nivanova@samba.org> | 2010-11-25 14:25:43 +0200 |
commit | 05b8e078f4649239bda42c66966dfa5567485b6d (patch) | |
tree | e2c0ecaba2b8b927940fc482d189e5c064afc60b /source4 | |
parent | ae61408e2f198ada294a826e375f0f4a1e7da3d6 (diff) | |
download | samba-05b8e078f4649239bda42c66966dfa5567485b6d.tar.gz samba-05b8e078f4649239bda42c66966dfa5567485b6d.tar.bz2 samba-05b8e078f4649239bda42c66966dfa5567485b6d.zip |
s4-dsdb: Fixed wrong assignment of name attribute to description atribute in create_ou.
Diffstat (limited to 'source4')
-rw-r--r-- | source4/scripting/python/samba/samdb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/samdb.py b/source4/scripting/python/samba/samdb.py index a59494f953..b0a1c1239c 100644 --- a/source4/scripting/python/samba/samdb.py +++ b/source4/scripting/python/samba/samdb.py @@ -667,7 +667,7 @@ accountExpires: %u if description: m["description"] = description if name: - m["description"] = name + m["name"] = name if sd: assert(isinstance(sd, str) or isinstance(sd, security.descriptor)) |