From b728042334f67738fd1a6fdd03e619bdb78fe06a Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 17 Oct 2001 08:54:19 +0000 Subject: added basic NTLMSSP support in smbd. This is still quite rough, and loses things like username mapping. I wanted to get this in then discuss it a bit to see how we want to split up the existing session setup code (This used to be commit b74fda69bf23207c26d8b2af23910d8f2eb89875) --- source3/lib/util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/lib') diff --git a/source3/lib/util.c b/source3/lib/util.c index 20422a00c7..d3f07dd0a8 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -1913,9 +1913,9 @@ DATA_BLOB data_blob(void *p, size_t length) /******************************************************************* free a data blob *******************************************************************/ -void data_blob_free(DATA_BLOB d) +void data_blob_free(DATA_BLOB *d) { - SAFE_FREE(d.data); + SAFE_FREE(d->data); } -- cgit