diff options
author | Rich Salz <rsalz@openssl.org> | 2015-01-23 17:58:26 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2015-01-23 17:58:26 +0100 |
commit | 68b00c237298b2e7e382686ffd583847d57bbc0b (patch) | |
tree | f0728a99d3d978a6268e715564401ae68e65167b /apps/s_time.c | |
parent | Add assembly support to ios64-cross. (diff) | |
download | openssl-68b00c237298b2e7e382686ffd583847d57bbc0b.tar.xz openssl-68b00c237298b2e7e382686ffd583847d57bbc0b.zip |
ifdef cleanup part 3: OPENSSL_SYSNAME
Rename OPENSSL_SYSNAME_xxx to OPENSSL_SYS_xxx
Remove MS_STATIC; it's a relic from platforms <32 bits.
Reviewed-by: Andy Polyakov <appro@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'apps/s_time.c')
-rw-r--r-- | apps/s_time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_time.c b/apps/s_time.c index 352040873f..972dccff2c 100644 --- a/apps/s_time.c +++ b/apps/s_time.c @@ -340,7 +340,7 @@ int MAIN(int argc, char **argv) SSL *scon = NULL; long finishtime = 0; int ret = 1, i; - MS_STATIC char buf[1024 * 8]; + char buf[1024 * 8]; int ver; apps_startup(); |