summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2005-05-22 10:40:54 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:16:59 -0500
commite4553307c1e3e44a7f772818aae18cca0aca92a3 (patch)
tree50c104fa106e57cd8729e25a66bdd8924ed5af90 /source4
parent3d97821243b0d4af866ccc158e0134a49c0e4901 (diff)
downloadsamba-e4553307c1e3e44a7f772818aae18cca0aca92a3.tar.gz
samba-e4553307c1e3e44a7f772818aae18cca0aca92a3.tar.bz2
samba-e4553307c1e3e44a7f772818aae18cca0aca92a3.zip
r6935: don't do three things at a time :-)
(This used to be commit a97eb63c11be6ce2bb94bca61078b303f15c9b9a)
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/ldb/modules/skel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/modules/skel.c b/source4/lib/ldb/modules/skel.c
index 33e5d53cef..9fb01941c9 100644
--- a/source4/lib/ldb/modules/skel.c
+++ b/source4/lib/ldb/modules/skel.c
@@ -36,7 +36,8 @@
#include "ldb/include/ldb.h"
#include "ldb/include/ldb_private.h"
-static struct private_data {
+const struct private_data {
+
const char *error_string;
};
@@ -133,7 +134,6 @@ struct ldb_module *skel_module_init(struct ldb_context *ldb, const char *options
ctx->ldb = ldb;
ctx->prev = ctx->next = NULL;
- ctx->private_data = NULL;
ctx->ops = &skel_ops;
talloc_set_destructor (ctx, skel_destructor);