GNUTLS: Fix the SSL_P(x) macro
It previously assumed there was an "F" variable in the scope it was used in. It now uses its input "x" variable.
This commit is contained in:
parent
5103d939d0
commit
a41a1d20db
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@
|
|||
# include <gnutls/crypto.h>
|
||||
#endif
|
||||
|
||||
#define SSL_P(x) *((gnutls_session_t *)F->ssl)
|
||||
#define SSL_P(x) *((gnutls_session_t *) ((x)->ssl))
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue