search for: tdb_data

Displaying 7 results from an estimated 7 matches for "tdb_data".

Did you mean: db_data
2007 May 15
1
Samba 3.0.25 plugin changes
...-fPIC -DPIC -o .libs/test.o In file included from test.c:21: ../../source/include/includes.h:636:17: tdb.h: No such file or directory In file included from ../../source/include/includes.h:637, from test.c:21: ../../source/include/util_tdb.h:35: error: syntax error before "TDB_DATA" ../../source/include/util_tdb.h:35: warning: no semicolon at end of struct or union ../../source/include/util_tdb.h:36: warning: type defaults to `int' in declaration of `TDB_LIST_NODE' ../../source/include/util_tdb.h:36: warning: data definition has no type or storage class ../...
2013 Nov 28
1
Samba4 git pull (11/28/2013) won't compile on FreeBSD 9.2
...ster # gcc -v Using built-in specs. Target: i386-undermydesk-freebsd Configured with: FreeBSD/i386 system compiler Thread model: posix gcc version 4.2.1 20070831 patched [FreeBSD] root at t60:/usr/local/samba-master # The following are the troubled code: static void brl_get_locks_readonly_parser(TDB_DATA key, TDB_DATA data, void *private_data) { struct brl_get_locks_readonly_state *state = (struct brl_get_locks_readonly_state *)private_data; struct byte_range_lock *br_lock; br_lock = talloc_pooled_object(...
2013 Feb 05
1
[Announce] Samba 4.0.3 Available for Download
...#39; value. * BUG 9508: s4:drsuapi: Make sure we report the meta data from the cycle start. * BUG 9540: terminate the irpc_servers_byname() result with server_id_set_disconnected(). * BUG 9598: Fix timeouts of some IRPC calls. * BUG 9609: Fix a warning by converting from TDB_DATA to struct ldb_val. o Matthieu Patou <mat at matws.net> * BUG 8909: Add documentation. * BUG 9565: Adding additional Samba 4.0 DC to W2k8 srv AD domain (in win200 functional level) produces dbcheck errors. o Arvid Requate <requate at univention.de> * BUG 9555: s...
2013 Feb 05
1
[Announce] Samba 4.0.3 Available for Download
...#39; value. * BUG 9508: s4:drsuapi: Make sure we report the meta data from the cycle start. * BUG 9540: terminate the irpc_servers_byname() result with server_id_set_disconnected(). * BUG 9598: Fix timeouts of some IRPC calls. * BUG 9609: Fix a warning by converting from TDB_DATA to struct ldb_val. o Matthieu Patou <mat at matws.net> * BUG 8909: Add documentation. * BUG 9565: Adding additional Samba 4.0 DC to W2k8 srv AD domain (in win200 functional level) produces dbcheck errors. o Arvid Requate <requate at univention.de> * BUG 9555: s...
2003 Sep 27
0
Samba 3(PDC) + winbind, anyone has it working ?
...C/BDC), the result is true. Under this situation wb_getpwnam is called with the domain stripped(again confirmed by the winbindd log). So it would call wb_getpwnam("root"). Below is the wb_getpwnam function in winbindd_acct.c WINBINDD_PW* wb_getpwnam( const char * name ) { char *keystr; TDB_DATA data; static WINBINDD_PW *pw; if ( !account_tdb && !winbindd_accountdb_init() ) { DEBUG(0,("wb_getpwnam: Failed to open winbindd account db\n")); return NULL; } keystr = acct_userkey_byname( name ); data = tdb_fetch_bystring( account_tdb, keystr ); pw = NULL; i...
2002 Dec 19
0
Failed to delete entry for share
...r by either adding another permission settings or simply deleting the default Everyone setting, saving it, and then recreating the exact same setting. The actual error message 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) ))...
2003 Dec 01
0
No subject
...s_domain), &size)) || size != sizeof(*pass)) return False; (I believe it's secrets_fetch that is failing, although sizeof(*pass) may also not be matching up with size) In secrets.c: static TDB_CONTEXT *tdb; //lines left out The function void *secrets_fetch(char *key, size_t *size) { TDB_DATA kbuf, dbuf; if (!tdb) return False; fails here. Which leades me to tdb.h/c where the struct resides and I have a bit of a problem identifying what the problem is. Why is it failing to open the secrets database here?? Any pointers?? Thanks for any help or hints. Return-Path: <don_mccall@h...