diff options
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/smb.h | 4 |
1 files changed, 2 insertions, 2 deletions
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; |