summaryrefslogtreecommitdiffstats
path: root/apps/s_server.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/s_server.c')
-rw-r--r--apps/s_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_server.c b/apps/s_server.c
index 986c1221e3..40d00cc563 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -1470,7 +1470,7 @@ static DH *load_dh_param(const char *dhfile)
DH *ret=NULL;
BIO *bio;
- if ((bio=BIO_new_file((char *)dhfile,"r")) == NULL)
+ if ((bio=BIO_new_file(dhfile,"r")) == NULL)
goto err;
ret=PEM_read_bio_DHparams(bio,NULL,NULL,NULL);
err: