From 05d10eba1f6142219638bf9b859d07b5bb175f72 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 1 Apr 2004 07:39:04 +0000 Subject: allow "struct TDB_DATA" as well as just "TDB_DATA" in general I prefer the struct form for Samba4 structures. I think its clearer. (This used to be commit 63b26557744ce4cbf5c9419f752fbd63ed8bfec6) --- source4/lib/tdb/tdb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4') diff --git a/source4/lib/tdb/tdb.h b/source4/lib/tdb/tdb.h index 169de5f87d..281925068c 100644 --- a/source4/lib/tdb/tdb.h +++ b/source4/lib/tdb/tdb.h @@ -57,7 +57,7 @@ enum TDB_ERROR {TDB_SUCCESS=0, TDB_ERR_CORRUPT, TDB_ERR_IO, TDB_ERR_LOCK, #define u32 unsigned #endif -typedef struct { +typedef struct TDB_DATA { char *dptr; size_t dsize; } TDB_DATA; -- cgit