BoringSSL: Work with stricter BIO_get_mem_data()
authorDouglas Creager <dcreager@google.com>
Tue, 10 Nov 2015 20:05:18 +0000 (15:05 -0500)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 10 Nov 2015 21:34:07 +0000 (22:34 +0100)
commit3e0d64d075f7907f1ba322eb427fd07b96c1258c
treed41b156d849327523fbd31febff6448e38fc1259
parent01b7d8274c4c9ad33cd8d0eeb5eeaa9a28a23c15
BoringSSL: Work with stricter BIO_get_mem_data()

BoringSSL implements `BIO_get_mem_data` as a function, instead of a
macro, and expects the output pointer to be a `char **`.  We have to add
an explicit cast to grab the pointer as a `const char **`.

Closes #524
lib/vtls/openssl.c