summaryrefslogtreecommitdiff
path: root/usr.sbin/nsd/tsig.c
diff options
context:
space:
mode:
authorJakob Schlyter <jakob@cvs.openbsd.org>2010-08-22 09:21:52 +0000
committerJakob Schlyter <jakob@cvs.openbsd.org>2010-08-22 09:21:52 +0000
commita4e9b19a51ee0716da73896659ec593d0ecfd2d2 (patch)
tree4b8611596f107f2b46e4181af8a36472afb94a3b /usr.sbin/nsd/tsig.c
parent5044f1e98f79891c7f32b935aa073a751116b7fc (diff)
NSD v3.2.6
Diffstat (limited to 'usr.sbin/nsd/tsig.c')
-rw-r--r--usr.sbin/nsd/tsig.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/nsd/tsig.c b/usr.sbin/nsd/tsig.c
index 8b4f3249470..886d5e1f27b 100644
--- a/usr.sbin/nsd/tsig.c
+++ b/usr.sbin/nsd/tsig.c
@@ -103,7 +103,7 @@ tsig_init(region_type *region)
tsig_key_table = NULL;
tsig_algorithm_table = NULL;
-#if defined(TSIG) && defined(HAVE_SSL)
+#if defined(HAVE_SSL)
return tsig_openssl_init(region);
#endif
return 1;
@@ -668,7 +668,7 @@ tsig_error_reply(tsig_record_type *tsig)
void
tsig_finalize()
{
-#if defined(TSIG) && defined(HAVE_SSL)
+#if defined(HAVE_SSL)
tsig_openssl_finalize();
#endif
}