diff options
author | markus <> | 2004-04-08 08:03:15 +0000 |
---|---|---|
committer | markus <> | 2004-04-08 08:03:15 +0000 |
commit | 40d673554117d24c9f46be721235d3e302c06e04 (patch) | |
tree | 341e7f38b840f3e503afb6e471123c0f2ba082c3 /src/lib/libcrypto/cversion.c | |
parent | cbf88de39286be06cd20e0c65b6cb7633dce25a5 (diff) | |
download | openbsd-40d673554117d24c9f46be721235d3e302c06e04.tar.gz openbsd-40d673554117d24c9f46be721235d3e302c06e04.tar.bz2 openbsd-40d673554117d24c9f46be721235d3e302c06e04.zip |
merge 0.9.7d
Diffstat (limited to 'src/lib/libcrypto/cversion.c')
-rw-r--r-- | src/lib/libcrypto/cversion.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/cversion.c b/src/lib/libcrypto/cversion.c index 56471fa74c..beeeb14013 100644 --- a/src/lib/libcrypto/cversion.c +++ b/src/lib/libcrypto/cversion.c | |||
@@ -74,7 +74,7 @@ const char *SSLeay_version(int t) | |||
74 | #ifdef DATE | 74 | #ifdef DATE |
75 | static char buf[sizeof(DATE)+11]; | 75 | static char buf[sizeof(DATE)+11]; |
76 | 76 | ||
77 | snprintf(buf,sizeof buf,"built on: %s",DATE); | 77 | BIO_snprintf(buf,sizeof buf,"built on: %s",DATE); |
78 | return(buf); | 78 | return(buf); |
79 | #else | 79 | #else |
80 | return("built on: date not available"); | 80 | return("built on: date not available"); |
@@ -85,7 +85,7 @@ const char *SSLeay_version(int t) | |||
85 | #ifdef CFLAGS | 85 | #ifdef CFLAGS |
86 | static char buf[sizeof(CFLAGS)+11]; | 86 | static char buf[sizeof(CFLAGS)+11]; |
87 | 87 | ||
88 | snprintf(buf,sizeof buf,"compiler: %s",CFLAGS); | 88 | BIO_snprintf(buf,sizeof buf,"compiler: %s",CFLAGS); |
89 | return(buf); | 89 | return(buf); |
90 | #else | 90 | #else |
91 | return("compiler: information not available"); | 91 | return("compiler: information not available"); |
@@ -96,7 +96,7 @@ const char *SSLeay_version(int t) | |||
96 | #ifdef PLATFORM | 96 | #ifdef PLATFORM |
97 | static char buf[sizeof(PLATFORM)+11]; | 97 | static char buf[sizeof(PLATFORM)+11]; |
98 | 98 | ||
99 | snprintf(buf,sizeof buf,"platform: %s", PLATFORM); | 99 | BIO_snprintf(buf,sizeof buf,"platform: %s", PLATFORM); |
100 | return(buf); | 100 | return(buf); |
101 | #else | 101 | #else |
102 | return("platform: information not available"); | 102 | return("platform: information not available"); |