From 413f2b2247bbe9214de17c3a4e98d438fb72e1d0 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Lutz=20J=C3=A4nicke?= <jaenicke@openssl.org>
Date: Wed, 25 Sep 2002 20:17:58 +0000
Subject: [PATCH] Add missing brackets. Submitted by: "Chris Brook"
 <cbrook@v-one.com> Reviewed by: PR:

---
 ssl/ssltest.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ssl/ssltest.c b/ssl/ssltest.c
index 4f6379e160..80618c62d6 100644
--- a/ssl/ssltest.c
+++ b/ssl/ssltest.c
@@ -405,7 +405,7 @@ int main(int argc, char *argv[])
 #ifndef OPENSSL_NO_DH
 			dhe1024=1;
 #else
-			fprintf(stderr,"ignoring -dhe1024, since I'm compiled without DH\n";
+			fprintf(stderr,"ignoring -dhe1024, since I'm compiled without DH\n");
 #endif
 			}
 		else if	(strcmp(*argv,"-dhe1024dsa") == 0)
@@ -413,7 +413,7 @@ int main(int argc, char *argv[])
 #ifndef OPENSSL_NO_DH
 			dhe1024dsa=1;
 #else
-			fprintf(stderr,"ignoring -dhe1024, since I'm compiled without DH\n";
+			fprintf(stderr,"ignoring -dhe1024, since I'm compiled without DH\n");
 #endif
 			}
 		else if	(strcmp(*argv,"-no_dhe") == 0)
-- 
2.25.1