projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Add debug target, remove cast, note possible bug.
[openssl.git]
/
apps
/
s_server.c
diff --git
a/apps/s_server.c
b/apps/s_server.c
index 986c1221e3c08c650d0a9905c4ebf36a911c9c89..40d00cc563be736e0aed487c4898b593c1c00ee1 100644
(file)
--- 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: