mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
9d897b0951
This means changing headers, implementing a simple tap-like wrapper, and also splitting out the helpers into those which are linked with the api* tests (which can't use non-public tdb2 functions) and those linked with the run* tests (which can). Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
9 lines
216 B
C
9 lines
216 B
C
#include "external-agent.h"
|
|
#include "tdb1_private.h"
|
|
|
|
/* This isn't possible with via the tdb2 API, but this makes it link. */
|
|
enum agent_return external_agent_needs_rec(struct tdb_context *tdb)
|
|
{
|
|
return FAILED;
|
|
}
|