diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2011-03-01 11:40:23 +0100 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2011-03-01 12:46:15 +0100 |
commit | 0e68867b269ad54a8b05441fa81a9ce523b0325b (patch) | |
tree | 6d0d6340ca5e9b515560746ecdf6e1a628a2b2e6 /source4/dsdb/common | |
parent | 86aa05e8607fa5f86a128a7a93823dc6f1b4dcc8 (diff) | |
download | samba-0e68867b269ad54a8b05441fa81a9ce523b0325b.tar.gz samba-0e68867b269ad54a8b05441fa81a9ce523b0325b.tar.bz2 samba-0e68867b269ad54a8b05441fa81a9ce523b0325b.zip |
s4:dsdb - always handle the attribute "options" as 32bit unsigned integer
It is defined as LDAP syntax 2.5.5.9 so no need at all to treat it as
64-bit integer.
Reviewed by: Kamenim and Metze
Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Tue Mar 1 12:46:15 CET 2011 on sn-devel-104
Diffstat (limited to 'source4/dsdb/common')
-rw-r--r-- | source4/dsdb/common/util.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c index fb742f92bd..d0efa057e7 100644 --- a/source4/dsdb/common/util.c +++ b/source4/dsdb/common/util.c @@ -1862,7 +1862,8 @@ failed: bool samdb_is_gc(struct ldb_context *ldb) { const char *attrs[] = { "options", NULL }; - int ret, options; + uint32_t options; + int ret; struct ldb_result *res; TALLOC_CTX *tmp_ctx; @@ -1883,7 +1884,7 @@ bool samdb_is_gc(struct ldb_context *ldb) return false; } - options = ldb_msg_find_attr_as_int(res->msgs[0], "options", 0); + options = ldb_msg_find_attr_as_uint(res->msgs[0], "options", 0); talloc_free(tmp_ctx); /* if options attribute has the 0x00000001 flag set, then enable the global catlog */ |