diff options
| author | deraadt <> | 2014-04-13 20:37:12 +0000 |
|---|---|---|
| committer | deraadt <> | 2014-04-13 20:37:12 +0000 |
| commit | 12b49770c8357608b124a4d9a697ecfe169f1e83 (patch) | |
| tree | 526e4a52c465ca5d0107849ce38aa20fe23ad8e4 /src/lib/libssl/src/apps/genrsa.c | |
| parent | 8cb037f975afd189850fb78c9c3a229a96a901d7 (diff) | |
| download | openbsd-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/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 | ||
