From 4a33bc9c73f213c21b4eefa1acd807a9894bc1ab Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 18 Jun 2003 13:28:37 +0000 Subject: There's nothing particularly secret in idmap.tdb, so create it with 0644 as the other databases. Volker (This used to be commit 5849053930474b1e735f3232995813ef5126ad00) --- source3/sam/idmap_tdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/sam/idmap_tdb.c b/source3/sam/idmap_tdb.c index cb595c4578..ad7c5c2e6c 100644 --- a/source3/sam/idmap_tdb.c +++ b/source3/sam/idmap_tdb.c @@ -363,7 +363,7 @@ static NTSTATUS db_idmap_init( char *params ) /* Open tdb cache */ if (!(idmap_tdb = tdb_open_log(tdbfile, 0, TDB_DEFAULT, O_RDWR | O_CREAT, - 0600))) { + 0644))) { DEBUG(0, ("idmap_init: Unable to open idmap database\n")); SAFE_FREE(tdbfile); return NT_STATUS_UNSUCCESSFUL; -- cgit