diff options
author | Endi S. Dewata <edewata@redhat.com> | 2009-10-23 22:59:48 -0500 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-11-02 16:36:54 +1100 |
commit | bf01937549cd1ebaf327a709ecb104bfc0e0705c (patch) | |
tree | 90caec9a9b4b81227c4c1f3cfb87ee3aa0efbfe3 /source4/lib | |
parent | 8097280b468b7bcf26a0e17fdcaaccfb34d06415 (diff) | |
download | samba-bf01937549cd1ebaf327a709ecb104bfc0e0705c.tar.gz samba-bf01937549cd1ebaf327a709ecb104bfc0e0705c.tar.bz2 samba-bf01937549cd1ebaf327a709ecb104bfc0e0705c.zip |
s4:dsdb - Store SID as string in FDS.
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/ldb-samba/ldif_handlers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb-samba/ldif_handlers.c b/source4/lib/ldb-samba/ldif_handlers.c index 59f8622a37..9467bef873 100644 --- a/source4/lib/ldb-samba/ldif_handlers.c +++ b/source4/lib/ldb-samba/ldif_handlers.c @@ -92,7 +92,7 @@ static int ldif_read_objectSid(struct ldb_context *ldb, void *mem_ctx, /* convert a NDR formatted blob to a ldif formatted objectSid */ -static int ldif_write_objectSid(struct ldb_context *ldb, void *mem_ctx, +int ldif_write_objectSid(struct ldb_context *ldb, void *mem_ctx, const struct ldb_val *in, struct ldb_val *out) { struct dom_sid *sid; @@ -116,7 +116,7 @@ static int ldif_write_objectSid(struct ldb_context *ldb, void *mem_ctx, return 0; } -static bool ldif_comparision_objectSid_isString(const struct ldb_val *v) +bool ldif_comparision_objectSid_isString(const struct ldb_val *v) { if (v->length < 3) { return false; |