diff options
author | Jeremy Allison <jra@samba.org> | 2005-06-24 20:25:18 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2005-06-24 20:25:18 +0000 |
commit | 839f1902935240846c8a1020a38dd964fe5c6841 (patch) | |
tree | d52b9e32395f5522406b64612f836c3155f69e19 /source/lib/data_blob.c | |
parent | 1a82e86121b9cf3966c1023d37a1e4db6dd38b7b (diff) | |
download | samba-839f1902935240846c8a1020a38dd964fe5c6841.tar.gz samba-839f1902935240846c8a1020a38dd964fe5c6841.tar.xz samba-839f1902935240846c8a1020a38dd964fe5c6841.zip |
r7882: Looks like a large patch - but what it actually does is make Samba
safe for using our headers and linking with C++ modules. Stops us
from using C++ reserved keywords in our code.
Jeremy
Diffstat (limited to 'source/lib/data_blob.c')
-rw-r--r-- | source/lib/data_blob.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/lib/data_blob.c b/source/lib/data_blob.c index 35805f861c5..161f46a9417 100644 --- a/source/lib/data_blob.c +++ b/source/lib/data_blob.c @@ -35,6 +35,7 @@ static void free_data_blob(DATA_BLOB *d) construct a data blob, must be freed with data_blob_free() you can pass NULL for p and get a blank data blob *******************************************************************/ + DATA_BLOB data_blob(const void *p, size_t length) { DATA_BLOB ret; |