diff options
author | Mark Andrews <marka@isc.org> | 2010-12-09 01:19:10 +0000 |
---|---|---|
committer | Mark Andrews <marka@isc.org> | 2010-12-09 01:19:10 +0000 |
commit | 72c446672fbaad4083ca846e02bd284a2aecf3a1 (patch) | |
tree | 8d7098170c12e107d0d4f0681f6d56085ae97a78 /omapip | |
parent | 51c8829ca2f0ca457da0c1df2421c1aaadb15958 (diff) | |
download | isc-dhcp-72c446672fbaad4083ca846e02bd284a2aecf3a1.tar.gz |
fix pointer
Diffstat (limited to 'omapip')
-rw-r--r-- | omapip/auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/omapip/auth.c b/omapip/auth.c index fee416ec..ab00b280 100644 --- a/omapip/auth.c +++ b/omapip/auth.c @@ -114,7 +114,7 @@ isc_result_t omapi_auth_key_enter (omapi_auth_key_t *a) &dstkey); if (status == ISC_R_SUCCESS) { status = dns_tsec_create(dhcp_gbl_ctx.mctx, dns_tsectype_tsig, - &dstkey, &a->tsec_key); + dstkey, &a->tsec_key); dst_key_free(&dstkey); } if (status != ISC_R_SUCCESS) |