summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_txt.c
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2005-03-20 22:56:07 +0000
committerNils Larsch <nils@openssl.org>2005-03-20 22:56:07 +0000
commitf4bfd357e5a191496c55a759d91c61cd5e9b740c (patch)
tree5a0b71a824640f2ab88a8900139174230992edfa /ssl/ssl_txt.c
parent130db968b889401f079089c70d3d098b3cd80af1 (diff)
some const fixes
Diffstat (limited to 'ssl/ssl_txt.c')
-rw-r--r--ssl/ssl_txt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_txt.c b/ssl/ssl_txt.c
index 40b76b1b26..faea41caa0 100644
--- a/ssl/ssl_txt.c
+++ b/ssl/ssl_txt.c
@@ -81,7 +81,7 @@ int SSL_SESSION_print_fp(FILE *fp, SSL_SESSION *x)
int SSL_SESSION_print(BIO *bp, SSL_SESSION *x)
{
unsigned int i;
- char *s;
+ const char *s;
if (x == NULL) goto err;
if (BIO_puts(bp,"SSL-Session:\n") <= 0) goto err;