summaryrefslogtreecommitdiff
path: root/lib/gnutlsxx.cpp
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2011-03-12 09:33:27 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2011-03-12 09:33:27 +0100
commit33cb62640c84205a0692708a524f88f81eec84bf (patch)
treee45f3da3812db52c0c707bc8909915aaacbf06b4 /lib/gnutlsxx.cpp
parent40056d3de3d250b4cc6c1b2868a8fe934aabc971 (diff)
downloadgnutls-33cb62640c84205a0692708a524f88f81eec84bf.tar.gz
gnutls_init_dtls() was made redundant. The same for gnutls_end_connection_t which was replaced by a flags integer..
Diffstat (limited to 'lib/gnutlsxx.cpp')
-rw-r--r--lib/gnutlsxx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gnutlsxx.cpp b/lib/gnutlsxx.cpp
index d0956f81ee..aa92bc636d 100644
--- a/lib/gnutlsxx.cpp
+++ b/lib/gnutlsxx.cpp
@@ -14,9 +14,9 @@ namespace gnutls
return ret;
}
- session::session (gnutls_connection_end_t end)
+ session::session (unsigned int flags)
{
- RETWRAP (gnutls_init (&s, end));
+ RETWRAP (gnutls_init (&s, flags));
}
session::~session ()