summaryrefslogtreecommitdiff
path: root/source4/dsdb/samdb
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mdw@samba.org>2010-10-14 09:11:04 +0200
committerMatthias Dieter Wallnöfer <mdw@samba.org>2010-10-14 08:26:53 +0000
commit9a3810fbb234c4c2a401e6940643ee161e83bb4f (patch)
tree1e67d3ea5a7d563da86d32a1f8c32c7ebf2a0055 /source4/dsdb/samdb
parent3921d6f4d34211f571cb34d748d4cb1e9484e1c9 (diff)
downloadsamba-9a3810fbb234c4c2a401e6940643ee161e83bb4f.tar.gz
samba-9a3810fbb234c4c2a401e6940643ee161e83bb4f.tar.bz2
samba-9a3810fbb234c4c2a401e6940643ee161e83bb4f.zip
s4:samldb LDB module - attempt to fix integer handling on big-endian platforms
And beside this it's also nicer to use standard LDB functions for type conversions. Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Thu Oct 14 08:26:53 UTC 2010 on sn-devel-104
Diffstat (limited to 'source4/dsdb/samdb')
-rw-r--r--source4/dsdb/samdb/ldb_modules/samldb.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/samldb.c b/source4/dsdb/samdb/ldb_modules/samldb.c
index 53099f03b1..385be493b3 100644
--- a/source4/dsdb/samdb/ldb_modules/samldb.c
+++ b/source4/dsdb/samdb/ldb_modules/samldb.c
@@ -828,8 +828,9 @@ static int samldb_objectclass_trigger(struct samldb_ctx *ac)
uint32_t user_account_control, account_type;
/* Step 1.3: "userAccountControl" -> "sAMAccountType" mapping */
- user_account_control = strtoul((const char *)el->values[0].data,
- NULL, 0);
+ user_account_control = ldb_msg_find_attr_as_uint(ac->msg,
+ "userAccountControl",
+ 0);
/* Temporary duplicate accounts aren't allowed */
if ((user_account_control & UF_TEMP_DUPLICATE_ACCOUNT) != 0) {
@@ -903,8 +904,8 @@ static int samldb_objectclass_trigger(struct samldb_ctx *ac)
if (el != NULL) {
uint32_t group_type, account_type;
- group_type = strtoul((const char *)el->values[0].data,
- NULL, 0);
+ group_type = ldb_msg_find_attr_as_uint(ac->msg,
+ "groupType", 0);
/* The creation of builtin groups requires the
* RELAX control */
@@ -1308,7 +1309,7 @@ static int samldb_modify(struct ldb_module *module, struct ldb_request *req)
modified = true;
- group_type = strtoul((const char *)el->values[0].data, NULL, 0);
+ group_type = ldb_msg_find_attr_as_uint(ac->msg, "groupType", 0);
old_group_type = samdb_search_uint(ldb, ac, 0, ac->msg->dn,
"groupType", NULL);
if (old_group_type == 0) {
@@ -1390,8 +1391,9 @@ static int samldb_modify(struct ldb_module *module, struct ldb_request *req)
modified = true;
- user_account_control = strtoul((const char *)el->values[0].data,
- NULL, 0);
+ user_account_control = ldb_msg_find_attr_as_uint(ac->msg,
+ "userAccountControl",
+ 0);
/* Temporary duplicate accounts aren't allowed */
if ((user_account_control & UF_TEMP_DUPLICATE_ACCOUNT) != 0) {