From ddbd59bfd57c4ffc84732eb2bf0bb3b3af89485b Mon Sep 17 00:00:00 2001 From: jb0n Date: Fri, 2 Sep 2016 17:46:43 -0700 Subject: [PATCH] go must have been caching a build or something, because this should never have 'worked' --- ctx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctx.go b/ctx.go index dc800c2e..9190c901 100755 --- a/ctx.go +++ b/ctx.go @@ -90,7 +90,7 @@ static int servername_gateway(TlsExtData* cw) { SSL_CTX* ctx = cw->ctx; //TODO: figure out what to do with return codes. The first isn't 0 SSL_CTX_set_tlsext_servername_callback(ctx, call_go_servername); - SSL_CTX_set_tlsext_servername_arg(ctx, cw.arg); + SSL_CTX_set_tlsext_servername_arg(ctx, cw->arg); return 0; }