diff options
author | Pierre Ossman <ossman@cendio.se> | 2018-05-29 15:49:26 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2018-05-29 15:49:26 +0200 |
commit | 8750db35e8d2792b6d2063ccfc439c2854edd593 (patch) | |
tree | 9baa171fe662b2530dfc8b214e41c41c230d94ba /common/rdr | |
parent | c05fba745ee42661b54bb4454b270e43232c1bcc (diff) | |
download | tigervnc-8750db35e8d2792b6d2063ccfc439c2854edd593.tar.gz tigervnc-8750db35e8d2792b6d2063ccfc439c2854edd593.zip |
Fix bad reference in TLSException initialiser
Diffstat (limited to 'common/rdr')
-rw-r--r-- | common/rdr/TLSException.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rdr/TLSException.cxx b/common/rdr/TLSException.cxx index bf8e97a2..0f75a4da 100644 --- a/common/rdr/TLSException.cxx +++ b/common/rdr/TLSException.cxx @@ -34,7 +34,7 @@ using namespace rdr; #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 */ |