diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2011-04-10 19:54:31 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2011-05-21 16:21:14 +0200 |
commit | d34205add33c028dfd8ca1f8c364013b71f5b3a1 (patch) | |
tree | 55e4e5bed124137a165ce62086c531ccfcf1e0a4 /source4/dsdb/samdb | |
parent | 4618a7f3a188e938070e1aa70a9209cdc8045f81 (diff) | |
download | samba-d34205add33c028dfd8ca1f8c364013b71f5b3a1.tar.gz samba-d34205add33c028dfd8ca1f8c364013b71f5b3a1.tar.bz2 samba-d34205add33c028dfd8ca1f8c364013b71f5b3a1.zip |
s4:ldb-samba/ldb_wrap.*-dsdb/samdb/samdb.c - handle LDB connection flags as unsigned
The LDB API ("ldb_connect") prescribes that they should be "unsigned".
Signed-off-by: Metze
Diffstat (limited to 'source4/dsdb/samdb')
-rw-r--r-- | source4/dsdb/samdb/samdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/samdb/samdb.c b/source4/dsdb/samdb/samdb.c index 29b454467c..cef0d1e54f 100644 --- a/source4/dsdb/samdb/samdb.c +++ b/source4/dsdb/samdb/samdb.c @@ -96,7 +96,7 @@ struct ldb_context *samdb_connect(TALLOC_CTX *mem_ctx, struct tevent_context *ev_ctx, struct loadparm_context *lp_ctx, struct auth_session_info *session_info, - int flags) + unsigned int flags) { struct ldb_context *ldb; struct dsdb_schema *schema; |