diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-04-04 06:55:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-04-04 06:55:15 +0000 |
commit | 4779c09256587b05dcaa7dac5442842716c42dfb (patch) | |
tree | c1bf647921481bc21f9843c3a259b152abefa3a6 /lib | |
parent | 4c6a0e7ef8f1ac89cc80337dbfcf288725c30689 (diff) |
more strcpy & sprintf murder; ho ok
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/cversion.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/cversion.c b/lib/libcrypto/cversion.c index f7a1b7a4f04..56471fa74c6 100644 --- a/lib/libcrypto/cversion.c +++ b/lib/libcrypto/cversion.c @@ -74,7 +74,7 @@ const char *SSLeay_version(int t) #ifdef DATE static char buf[sizeof(DATE)+11]; - sprintf(buf,"built on: %s",DATE); + snprintf(buf,sizeof buf,"built on: %s",DATE); return(buf); #else return("built on: date not available"); @@ -85,7 +85,7 @@ const char *SSLeay_version(int t) #ifdef CFLAGS static char buf[sizeof(CFLAGS)+11]; - sprintf(buf,"compiler: %s",CFLAGS); + snprintf(buf,sizeof buf,"compiler: %s",CFLAGS); return(buf); #else return("compiler: information not available"); @@ -96,7 +96,7 @@ const char *SSLeay_version(int t) #ifdef PLATFORM static char buf[sizeof(PLATFORM)+11]; - sprintf(buf,"platform: %s", PLATFORM); + snprintf(buf,sizeof buf,"platform: %s", PLATFORM); return(buf); #else return("platform: information not available"); |