diff options
| author | Alexander Barton <alex@barton.de> | 2012-11-11 10:49:06 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2012-11-11 10:50:32 +0100 |
| commit | 6f531a3c99ca267370b8f77cd3e51d751fb48826 (patch) | |
| tree | 9dd299cb20378e1b7c513e85a5fa2501df905530 /src | |
| parent | 53917fa4b80753fc189ed5a516c06c804f2cf415 (diff) | |
| download | ngircd-6f531a3c99ca267370b8f77cd3e51d751fb48826.tar.gz ngircd-6f531a3c99ca267370b8f77cd3e51d751fb48826.zip | |
conf-ssl.h: Use "gnutls_session_t" instead of "gnutls_session"
This fixes the following warning with current versions of GnuTLS: conf-ssl.h:36: warning: "gnutls_session" is deprecated
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/conf-ssl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ngircd/conf-ssl.h b/src/ngircd/conf-ssl.h index 428bcf45..22897ef5 100644 --- a/src/ngircd/conf-ssl.h +++ b/src/ngircd/conf-ssl.h @@ -33,7 +33,7 @@ struct ConnSSL_State { SSL *ssl; #endif #ifdef HAVE_LIBGNUTLS - gnutls_session gnutls_session; + gnutls_session_t gnutls_session; void *cookie; /* pointer to server configuration structure (for outgoing connections), or NULL. */ #endif |