1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00
samba-mirror/lib/ntdb/test/helprun-external-agent.c
Rusty Russell 16cc345d4f TDB2: Goodbye TDB2, Hello NTDB.
This renames everything from tdb2 to ntdb: importantly, we no longer
use the tdb_ namespace, so you can link against both ntdb and tdb if
you want to.

This also enables building of standalone ntdb by the autobuild script.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2012-06-19 05:38:06 +02:00

8 lines
178 B
C

#include "external-agent.h"
#include "private.h"
enum agent_return external_agent_needs_rec(struct ntdb_context *ntdb)
{
return ntdb_needs_recovery(ntdb) ? SUCCESS : FAILED;
}