From 95ed275dbbff7c1e3a58a3d0c5408087ef9a0432 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 27 Aug 2005 23:47:17 +0000 Subject: r9698: Fix a bit of memory management More minor bugfixes Support mapping objectclasses and do mapping on 'dn' field as well (not just msg->dn) (This used to be commit b7b079167d5c6616f7c5c4afb7dd80c15707cfd9) --- source4/include/smb.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/include') diff --git a/source4/include/smb.h b/source4/include/smb.h index 864ad1ba02..3c03c7d7f1 100644 --- a/source4/include/smb.h +++ b/source4/include/smb.h @@ -187,14 +187,14 @@ enum smb_signing_state {SMB_SIGNING_OFF, SMB_SIGNING_SUPPORTED, #define NTCREATEX_ACTION_UNKNOWN 5 /* used to hold an arbitrary blob of data */ -typedef struct data_blob { +typedef struct datablob { uint8_t *data; size_t length; } DATA_BLOB; /* by making struct ldb_val and DATA_BLOB the same, we can simplify a fair bit of code */ -#define ldb_val data_blob +#define ldb_val datablob /* 64 bit time (100 nanosec) 1601 - cifs6.txt, section 3.5, page 30, 4 byte aligned */ typedef uint64_t NTTIME; -- cgit