r9698: Fix a bit of memory management
[ira/wip.git] / source / include / smb.h
index 864ad1ba023ca0f17e4bfcd038ac1d225b03947c..3c03c7d7f197c171dfbe15dace3c45d181a46a91 100644 (file)
@@ -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;