Displaying 1 result from an estimated 1 matches for "share_tdb".
Did you mean:
share_ldb
2002 Dec 19
0
Failed to delete entry for share
...ssage come from the following section in the source:
rpc_server/srv_srvsvc_nt.c
static BOOL delete_share_security(int snum)
{
TDB_DATA kbuf;
fstring key;
slprintf(key, sizeof(key)-1, "SECDESC/%s",
lp_servicename(snum));
kbuf.dptr = key;
kbuf.dsize = strlen(key)+1;
if (tdb_delete(share_tdb, kbuf) != 0) {
DEBUG(0,("delete_share_security: Failed to delete entry
for share %s\n",
lp_servicename(snum) ));
return False;
}
return True;
}
So It appears to me that some security setting is not getting setup for
shares correctly. Before I dig further into the sources, I th...