const fixes
diff --git a/apps/engine.c b/apps/engine.c
index f1585bb..8f7b389 100644
--- a/apps/engine.c
+++ b/apps/engine.c
@@ -344,7 +344,7 @@
 int MAIN(int argc, char **argv)
 	{
 	int ret=1,i;
-	char **pp;
+	const char **pp;
 	int verbose=0, list_cap=0, test_avail=0, test_avail_noise = 0;
 	ENGINE *e;
 	STACK *engines = sk_new_null();
diff --git a/apps/s_server.c b/apps/s_server.c
index 7e43b1a..986c122 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -180,7 +180,7 @@
 static int generate_session_id(const SSL *ssl, unsigned char *id,
 				unsigned int *id_len);
 #ifndef OPENSSL_NO_DH
-static DH *load_dh_param(char *dhfile);
+static DH *load_dh_param(const char *dhfile);
 static DH *get_dh512(void);
 #endif
 
@@ -1465,12 +1465,12 @@
 	}
 
 #ifndef OPENSSL_NO_DH
-static DH *load_dh_param(char *dhfile)
+static DH *load_dh_param(const char *dhfile)
 	{
 	DH *ret=NULL;
 	BIO *bio;
 
-	if ((bio=BIO_new_file(dhfile,"r")) == NULL)
+	if ((bio=BIO_new_file((char *)dhfile,"r")) == NULL)
 		goto err;
 	ret=PEM_read_bio_DHparams(bio,NULL,NULL,NULL);
 err: