diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-10-09 07:05:08 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:15:20 -0500 |
commit | 617c39ab5ffbefcd7d0536c72ffbb0c36ce04215 (patch) | |
tree | 63cb28e40878c8286cfe8d550e7a3cc8e32574c5 /source3/lib/ldb/common/ldb.c | |
parent | 6c6842ee9449c45160fb82b6c1002f20414d3e6e (diff) | |
download | samba-617c39ab5ffbefcd7d0536c72ffbb0c36ce04215.tar.gz samba-617c39ab5ffbefcd7d0536c72ffbb0c36ce04215.tar.bz2 samba-617c39ab5ffbefcd7d0536c72ffbb0c36ce04215.zip |
r19182: merge from samba4:
add ldb_set_create_perms() function to set the create_perms after
ldb_init() and before ldb_connect()
metze
(This used to be commit dd9d469eef337954b6aee4c86ac0691f52812456)
Diffstat (limited to 'source3/lib/ldb/common/ldb.c')
-rw-r--r-- | source3/lib/ldb/common/ldb.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source3/lib/ldb/common/ldb.c b/source3/lib/ldb/common/ldb.c index b54febf208..28d1c7235a 100644 --- a/source3/lib/ldb/common/ldb.c +++ b/source3/lib/ldb/common/ldb.c @@ -52,6 +52,7 @@ struct ldb_context *ldb_init(void *mem_ctx) } ldb_set_utf8_default(ldb); + ldb_set_create_perms(ldb, 0666); return ldb; } @@ -455,6 +456,16 @@ int ldb_set_timeout_from_prev_req(struct ldb_context *ldb, struct ldb_request *o return LDB_SUCCESS; } + +/* + set the permissions for new files to be passed to open() in + backends that use local files + */ +void ldb_set_create_perms(struct ldb_context *ldb, unsigned int perms) +{ + ldb->create_perms = perms; +} + /* start an ldb request NOTE: the request must be a talloc context. |