diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-07-30 23:17:41 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-07-30 23:17:41 +0200 |
commit | 01a016880620cf2a3ad5135327a27124d8c168c2 (patch) | |
tree | adca42ec98193d5a1aa604212cd8bfd6b53af62b | |
parent | 0e811d8c59f95bcbddd1d07410e4a8c4d8fb77cf (diff) |
vtls: repair build without TLS support
... by defining Curl_ssl_random() properly
-rw-r--r-- | lib/vtls/vtls.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/vtls/vtls.h b/lib/vtls/vtls.h index 5f58cbd98..72c512d50 100644 --- a/lib/vtls/vtls.h +++ b/lib/vtls/vtls.h @@ -123,6 +123,7 @@ void Curl_ssl_md5sum(unsigned char *tmp, /* input */ #define Curl_ssl_free_certinfo(x) Curl_nop_stmt #define Curl_ssl_connect_nonblocking(x,y,z) CURLE_NOT_BUILT_IN #define Curl_ssl_kill_session(x) Curl_nop_stmt +#define Curl_ssl_random(x,y,z) CURLE_NOT_BUILT_IN #endif #endif /* HEADER_CURL_VTLS_H */ |