diff options
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 | ||