forked from Telodendria/Cytoplasm
Compare commits
4 commits
d7faff734c
...
b3be10e112
Author | SHA1 | Date | |
---|---|---|---|
|
b3be10e112 | ||
dd99759e39 | |||
bd310e62ac | |||
|
5fac67a674 |
2 changed files with 3 additions and 2 deletions
|
@ -33,7 +33,8 @@
|
||||||
#define CYTOPLASM_VERSION_BETA 0
|
#define CYTOPLASM_VERSION_BETA 0
|
||||||
#define CYTOPLASM_VERSION_STABLE (!CYTOPLASM_VERSION_ALPHA && !CYTOPLASM_VERSION_BETA)
|
#define CYTOPLASM_VERSION_STABLE (!CYTOPLASM_VERSION_ALPHA && !CYTOPLASM_VERSION_BETA)
|
||||||
|
|
||||||
#define STRINGIFY(x) #x
|
#define XSTRINGIFY(x) #x
|
||||||
|
#define STRINGIFY(x) XSTRINGIFY(x)
|
||||||
|
|
||||||
/***
|
/***
|
||||||
* @Nm Cytoplasm
|
* @Nm Cytoplasm
|
||||||
|
|
|
@ -81,7 +81,7 @@ TlsInitClient(int fd, const char *serverName)
|
||||||
|
|
||||||
cookie->method = TLS_client_method();
|
cookie->method = TLS_client_method();
|
||||||
cookie->ctx = SSL_CTX_new(cookie->method);
|
cookie->ctx = SSL_CTX_new(cookie->method);
|
||||||
coolie->fd = fd;
|
cookie->fd = fd;
|
||||||
if (!cookie->ctx)
|
if (!cookie->ctx)
|
||||||
{
|
{
|
||||||
goto error;
|
goto error;
|
||||||
|
|
Loading…
Reference in a new issue