commit | 8750db35e8d2792b6d2063ccfc439c2854edd593 | [log] [tgz] |
---|---|---|
author | Pierre Ossman <ossman@cendio.se> | Tue May 29 15:49:26 2018 +0200 |
committer | Pierre Ossman <ossman@cendio.se> | Tue May 29 15:49:26 2018 +0200 |
tree | 9baa171fe662b2530dfc8b214e41c41c230d94ba | |
parent | c05fba745ee42661b54bb4454b270e43232c1bcc [diff] |
Fix bad reference in TLSException initialiser
diff --git a/common/rdr/TLSException.cxx b/common/rdr/TLSException.cxx index bf8e97a..0f75a4d 100644 --- a/common/rdr/TLSException.cxx +++ b/common/rdr/TLSException.cxx
@@ -34,7 +34,7 @@ #ifdef HAVE_GNUTLS TLSException::TLSException(const char* s, int err_) - : Exception("%s: %s (%d)", s, gnutls_strerror(err), err), err(err_) + : Exception("%s: %s (%d)", s, gnutls_strerror(err_), err_), err(err_) { } #endif /* HAVE_GNUTLS */