diff options
author | 2014-04-13 20:37:11 +0000 | |
---|---|---|
committer | 2014-04-13 20:37:11 +0000 | |
commit | 7b4b7db27922c9f961d3584a0091fce782483e83 (patch) | |
tree | fb29da008e5dcacf78ce3ce13ea80e0eecc2eda1 /lib/libssl/s3_lib.c | |
parent | We don't use this build system. (diff) | |
download | wireguard-openbsd-7b4b7db27922c9f961d3584a0091fce782483e83.tar.xz wireguard-openbsd-7b4b7db27922c9f961d3584a0091fce782483e83.zip |
remove more cases of MS_STATIC, MS_CALLBACK, and MS_FAR. Did you
know that MS_STATIC doesn't mean it is static? How far can lies
and half-truths be layered? I wonder if anyone got fooled, and
actually returned a pointer..
ok beck
Diffstat (limited to 'lib/libssl/s3_lib.c')
-rw-r--r-- | lib/libssl/s3_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/s3_lib.c b/lib/libssl/s3_lib.c index c4ef2738d7b..6b2739161de 100644 --- a/lib/libssl/s3_lib.c +++ b/lib/libssl/s3_lib.c @@ -3082,7 +3082,7 @@ void ssl3_clear(SSL *s) } #ifndef OPENSSL_NO_SRP -static char * MS_CALLBACK srp_password_from_info_cb(SSL *s, void *arg) +static char * srp_password_from_info_cb(SSL *s, void *arg) { return BUF_strdup(s->srp_ctx.info) ; } |