diff options
author | deraadt <> | 2014-04-13 20:37:12 +0000 |
---|---|---|
committer | deraadt <> | 2014-04-13 20:37:12 +0000 |
commit | 055493ad24265ed26872a3a87865dd61fa3b713f (patch) | |
tree | 526e4a52c465ca5d0107849ce38aa20fe23ad8e4 /src/lib/libssl/src/apps/genrsa.c | |
parent | 5a9459278c02e9167c3cf08369b67bc609c3865b (diff) | |
download | openbsd-055493ad24265ed26872a3a87865dd61fa3b713f.tar.gz openbsd-055493ad24265ed26872a3a87865dd61fa3b713f.tar.bz2 openbsd-055493ad24265ed26872a3a87865dd61fa3b713f.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/src/apps/genrsa.c')
-rw-r--r-- | src/lib/libssl/src/apps/genrsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/src/apps/genrsa.c b/src/lib/libssl/src/apps/genrsa.c index ece114c876..d3064b663a 100644 --- a/src/lib/libssl/src/apps/genrsa.c +++ b/src/lib/libssl/src/apps/genrsa.c | |||
@@ -82,7 +82,7 @@ | |||
82 | #undef PROG | 82 | #undef PROG |
83 | #define PROG genrsa_main | 83 | #define PROG genrsa_main |
84 | 84 | ||
85 | static int MS_CALLBACK genrsa_cb(int p, int n, BN_GENCB *cb); | 85 | static int genrsa_cb(int p, int n, BN_GENCB *cb); |
86 | 86 | ||
87 | int MAIN(int, char **); | 87 | int MAIN(int, char **); |
88 | 88 | ||
@@ -311,7 +311,7 @@ err: | |||
311 | OPENSSL_EXIT(ret); | 311 | OPENSSL_EXIT(ret); |
312 | } | 312 | } |
313 | 313 | ||
314 | static int MS_CALLBACK genrsa_cb(int p, int n, BN_GENCB *cb) | 314 | static int genrsa_cb(int p, int n, BN_GENCB *cb) |
315 | { | 315 | { |
316 | char c='*'; | 316 | char c='*'; |
317 | 317 | ||