summaryrefslogtreecommitdiff
path: root/security/openssl/files/patch-apps-dgst.c
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2004-03-17 13:51:00 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2004-03-17 13:51:00 +0000
commit130313c7d4007ffb303bcdc3bc6c7c41fc10e006 (patch)
treee1d8b0b71c36eedcc4bbe73128923d3b2ed08cf3 /security/openssl/files/patch-apps-dgst.c
parentUpdate to v0.21.0. (diff)
- Security update to 0.9.7d
http://www.openssl.org/news/secadv_20040317.txt
Notes
Notes: svn path=/head/; revision=104290
Diffstat (limited to 'security/openssl/files/patch-apps-dgst.c')
-rw-r--r--security/openssl/files/patch-apps-dgst.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/security/openssl/files/patch-apps-dgst.c b/security/openssl/files/patch-apps-dgst.c
new file mode 100644
index 000000000000..25fbf96d2c7f
--- /dev/null
+++ b/security/openssl/files/patch-apps-dgst.c
@@ -0,0 +1,11 @@
+--- apps/dgst.c.orig Sat Dec 27 15:40:56 2003
++++ apps/dgst.c Wed Mar 17 13:59:05 2004
+@@ -349,7 +349,7 @@
+ {
+ size_t len = strlen(name)+strlen(argv[i])+5;
+ tmp=tofree=OPENSSL_malloc(len);
+- BIO_snprintf(tmp,len,"%s(%s)= ",name,argv[i]);
++ BIO_snprintf(tmp,len,"%s(%s) = ",name,argv[i]);
+ }
+ else
+ tmp="";