From 3dbebbfe6ec7ac40eb1500e32372a9cf583f5f73 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Tue, 14 Mar 2000 20:00:37 +0000 Subject: [PATCH] use 0 not NULL in dst_key_frombuffer --- lib/omapi/auth.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/omapi/auth.c b/lib/omapi/auth.c index 2883f0292c..8b0a1494ba 100644 --- a/lib/omapi/auth.c +++ b/lib/omapi/auth.c @@ -15,7 +15,7 @@ * SOFTWARE. */ -/* $Id: auth.c,v 1.1 2000/03/14 03:37:10 tale Exp $ */ +/* $Id: auth.c,v 1.2 2000/03/14 20:00:37 tale Exp $ */ /* Principal Author: DCL */ @@ -134,8 +134,8 @@ auth_makekey(const char *name, unsigned int algorithm, dst_key_t **key) { isc_buffer_add(&secret, secret_len); - result = dst_key_frombuffer(auth->name, dst_algorithm, NULL, - NULL, &secret, omapi_mctx, key); + result = dst_key_frombuffer(auth->name, dst_algorithm, 0, + 0, &secret, omapi_mctx, key); } UNLOCK(&mutex);