summaryrefslogtreecommitdiff
path: root/omapip
diff options
context:
space:
mode:
authorMark Andrews <marka@isc.org>2010-12-06 02:00:25 +0000
committerMark Andrews <marka@isc.org>2010-12-06 02:00:25 +0000
commit01910481cd40958a03bdc9569eddd4bccb172eca (patch)
tree5413e945a0b842f0d82a96ac7a947a25d26f77b3 /omapip
parent42cbff6349ef6e47548774a6e356a8cc92b329b6 (diff)
downloadisc-dhcp-01910481cd40958a03bdc9569eddd4bccb172eca.tar.gz
dns_tsec_create now takes the address of the dstkey pointer
Diffstat (limited to 'omapip')
-rw-r--r--omapip/auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/omapip/auth.c b/omapip/auth.c
index a9a0a850..b62e9088 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);
}
if (status != ISC_R_SUCCESS) {
if (dstkey != NULL) {