summaryrefslogtreecommitdiffstats
path: root/source/auth/auth.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-05-14 12:16:20 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:22:01 -0500
commit3d3d61687ef00181f4f04e001d42181d93ac931e (patch)
tree1c1e610eb96ec2facaeacaa9659b80c0db29a9fa /source/auth/auth.c
parent1351207626ee0f99aef93326ef96bf69651bf472 (diff)
downloadsamba-3d3d61687ef00181f4f04e001d42181d93ac931e.tar.gz
samba-3d3d61687ef00181f4f04e001d42181d93ac931e.tar.xz
samba-3d3d61687ef00181f4f04e001d42181d93ac931e.zip
r22844: Introduce const DATA_BLOB data_blob_null = { NULL, 0, NULL }; and
replace all data_blob(NULL, 0) calls.
Diffstat (limited to 'source/auth/auth.c')
-rw-r--r--source/auth/auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/auth/auth.c b/source/auth/auth.c
index 91a5ac2ff1c..eb239d3d7df 100644
--- a/source/auth/auth.c
+++ b/source/auth/auth.c
@@ -79,7 +79,7 @@ static struct auth_init_function_entry *auth_find_backend_entry(const char *name
static const uint8 *get_ntlm_challenge(struct auth_context *auth_context)
{
- DATA_BLOB challenge = data_blob(NULL, 0);
+ DATA_BLOB challenge = data_blob_null;
const char *challenge_set_by = NULL;
auth_methods *auth_method;
TALLOC_CTX *mem_ctx;