summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpyr <pyr@openbsd.org>2007-10-01 13:57:29 +0000
committerpyr <pyr@openbsd.org>2007-10-01 13:57:29 +0000
commit68ecb1d421afe2cbe5f96af4ffa08692c94661b0 (patch)
tree457dba29a434142d465a7fbf185b5613944d7b71
parentPrint the MAC address. (diff)
downloadwireguard-openbsd-68ecb1d421afe2cbe5f96af4ffa08692c94661b0.tar.xz
wireguard-openbsd-68ecb1d421afe2cbe5f96af4ffa08692c94661b0.zip
kill some remaining debug that snuk in.
-rw-r--r--usr.sbin/hoststated/relay.c4
-rw-r--r--usr.sbin/relayd/relay.c4
2 files changed, 2 insertions, 6 deletions
diff --git a/usr.sbin/hoststated/relay.c b/usr.sbin/hoststated/relay.c
index 45da99fff9a..3846666c242 100644
--- a/usr.sbin/hoststated/relay.c
+++ b/usr.sbin/hoststated/relay.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: relay.c,v 1.47 2007/09/28 13:05:28 pyr Exp $ */
+/* $OpenBSD: relay.c,v 1.48 2007/10/01 13:57:29 pyr Exp $ */
/*
* Copyright (c) 2006, 2007 Reyk Floeter <reyk@openbsd.org>
@@ -2061,7 +2061,6 @@ relay_ssl_ctx_create(struct relay *rlay)
{
struct protocol *proto = rlay->proto;
SSL_CTX *ctx;
- const char *ssl_action = "NO ACTION";
ctx = SSL_CTX_new(SSLv23_method());
if (ctx == NULL)
@@ -2116,7 +2115,6 @@ relay_ssl_ctx_create(struct relay *rlay)
err:
if (ctx != NULL)
SSL_CTX_free(ctx);
- log_debug("last SSL action: %s", ssl_action);
ssl_error(rlay->conf.name, "relay_ssl_ctx_create");
return (NULL);
}
diff --git a/usr.sbin/relayd/relay.c b/usr.sbin/relayd/relay.c
index 45da99fff9a..3846666c242 100644
--- a/usr.sbin/relayd/relay.c
+++ b/usr.sbin/relayd/relay.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: relay.c,v 1.47 2007/09/28 13:05:28 pyr Exp $ */
+/* $OpenBSD: relay.c,v 1.48 2007/10/01 13:57:29 pyr Exp $ */
/*
* Copyright (c) 2006, 2007 Reyk Floeter <reyk@openbsd.org>
@@ -2061,7 +2061,6 @@ relay_ssl_ctx_create(struct relay *rlay)
{
struct protocol *proto = rlay->proto;
SSL_CTX *ctx;
- const char *ssl_action = "NO ACTION";
ctx = SSL_CTX_new(SSLv23_method());
if (ctx == NULL)
@@ -2116,7 +2115,6 @@ relay_ssl_ctx_create(struct relay *rlay)
err:
if (ctx != NULL)
SSL_CTX_free(ctx);
- log_debug("last SSL action: %s", ssl_action);
ssl_error(rlay->conf.name, "relay_ssl_ctx_create");
return (NULL);
}