summaryrefslogtreecommitdiff
path: root/lib/gnutlsxx.cpp
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2007-01-12 15:37:46 +0000
committerSimon Josefsson <simon@josefsson.org>2007-01-12 15:37:46 +0000
commit1cac0e6ee9d40f767ebbe87ac9d7beab13a23267 (patch)
treea6c8a7bd99d5b6903a1e1b92da09127a2eef611c /lib/gnutlsxx.cpp
parent05efe2a1054e83423641a6c86d9969a56fb91b9b (diff)
downloadgnutls-1cac0e6ee9d40f767ebbe87ac9d7beab13a23267.tar.gz
Make it compile by commenting out call to virtual method (possibly
incorrect but I don't know what the intention was).
Diffstat (limited to 'lib/gnutlsxx.cpp')
-rw-r--r--lib/gnutlsxx.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/gnutlsxx.cpp b/lib/gnutlsxx.cpp
index 28c040cb03..b145f763a1 100644
--- a/lib/gnutlsxx.cpp
+++ b/lib/gnutlsxx.cpp
@@ -825,7 +825,9 @@ credentials::credentials(gnutls_credentials_type_t t) : type(t)
credentials::credentials( credentials& c)
{
this->type = c.type;
- this->set_ptr( c.ptr());
+ // FIXME: The following doesn't work, because set_ptr is virtual.
+ // What was the intention?
+ // this->set_ptr( c.ptr());
}
gnutls_credentials_type_t credentials::get_type() const