summaryrefslogtreecommitdiff
path: root/src/lib/libssl/s3_lib.c
diff options
context:
space:
mode:
authorderaadt <>2014-04-13 20:37:12 +0000
committerderaadt <>2014-04-13 20:37:12 +0000
commit12b49770c8357608b124a4d9a697ecfe169f1e83 (patch)
tree526e4a52c465ca5d0107849ce38aa20fe23ad8e4 /src/lib/libssl/s3_lib.c
parent8cb037f975afd189850fb78c9c3a229a96a901d7 (diff)
downloadopenbsd-12b49770c8357608b124a4d9a697ecfe169f1e83.tar.gz
openbsd-12b49770c8357608b124a4d9a697ecfe169f1e83.tar.bz2
openbsd-12b49770c8357608b124a4d9a697ecfe169f1e83.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 'src/lib/libssl/s3_lib.c')
-rw-r--r--src/lib/libssl/s3_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libssl/s3_lib.c b/src/lib/libssl/s3_lib.c
index c4ef2738d7..6b2739161d 100644
--- a/src/lib/libssl/s3_lib.c
+++ b/src/lib/libssl/s3_lib.c
@@ -3082,7 +3082,7 @@ void ssl3_clear(SSL *s)
3082 } 3082 }
3083 3083
3084#ifndef OPENSSL_NO_SRP 3084#ifndef OPENSSL_NO_SRP
3085static char * MS_CALLBACK srp_password_from_info_cb(SSL *s, void *arg) 3085static char * srp_password_from_info_cb(SSL *s, void *arg)
3086 { 3086 {
3087 return BUF_strdup(s->srp_ctx.info) ; 3087 return BUF_strdup(s->srp_ctx.info) ;
3088 } 3088 }