From: Marko Kreen Date: Tue, 26 Jan 2016 20:39:44 +0000 (+0200) Subject: sbuf: define handle_tls_handshake for non-tls build X-Git-Tag: pgbouncer_1_7_1~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=294124ca947fa1d03d294253c74bc497356a76aa;p=pgbouncer sbuf: define handle_tls_handshake for non-tls build Fixes: #101 --- diff --git a/src/sbuf.c b/src/sbuf.c index 199e728..7db688a 100644 --- a/src/sbuf.c +++ b/src/sbuf.c @@ -1168,4 +1168,9 @@ void sbuf_cleanup(void) { } +static bool handle_tls_handshake(SBuf *sbuf) +{ + return false; +} + #endif