search for: tdb_context

Displaying 5 results from an estimated 5 matches for "tdb_context".

2008 Jun 01
3
Failed building 3.0.30 for tru64 4.0F
Dear friends, I failed to buld samba 3.0.30 for tru64unix 4.0F. I am curently locked to this os version due to other production software. We currently run Samba 2.2.8a but we were requested to upgrade by our network group. I downloaded 3.3.30 and did $ cd source $ ./configure no warnings or errors as far as I could see, except checking for replacing readdir using getdirentries()...
2007 May 15
1
Samba 3.0.25 plugin changes
...s.h:661, from test.c:21: ../../source/librpc/gen_ndr/security.h:1:26: ndr/security.h: No such file or directory In file included from ../../source/include/includes.h:689, from test.c:21: ../../source/include/rpc_eventlog.h:63: error: syntax error before "TDB_CONTEXT" ../../source/include/rpc_eventlog.h:63: warning: no semicolon at end of struct or union ../../source/include/rpc_eventlog.h:65: error: syntax error before '}' token ../../source/include/rpc_eventlog.h:65: warning: type defaults to `int' in declaration of `ELOG_TDB' ../.....
2012 Jan 25
26
[PATCH v4 00/23] Xenstore stub domain
Changes from v3: - mini-os configuration files moved into stubdom/ - mini-os extra console support now a config option - Fewer #ifdefs - grant table setup uses hypercall bounce - Xenstore stub domain syslog support re-enabled Changes from v2: - configuration support added to mini-os build system - add mini-os support for conditionally compiling frontends, xenbus -
2002 Jul 01
0
announce: TDB_File.pm
...having done so: nice, clean and simple. it was almost an ideal library to provide XS bindings for. the logging_function callback should perhaps have a void *state argument for "instance data" too. (although it would probably never be used by C code). I'm going to have to look up the TDB_CONTEXT address in a hash (or something) to provide this myself. tdb_reopen() closes the database on error, which means (amongst other things) that you can't call tdb_error() to find out what went wrong (you have to use a logging callback). tdb_reopen_all() returns no indication of *which* reopen fai...
2003 Dec 01
0
No subject
...ssword fails because of this line in that function: if (!(pass = secrets_fetch(trust_keystr(dos_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...