From 0821bcd4de85b527281714dd6c4d9683f0e713c4 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Wed, 30 Mar 2005 10:26:02 +0000 Subject: Constification. --- ssl/ssl_txt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ssl/ssl_txt.c') diff --git a/ssl/ssl_txt.c b/ssl/ssl_txt.c index faea41caa0..fd0c55c127 100644 --- a/ssl/ssl_txt.c +++ b/ssl/ssl_txt.c @@ -61,7 +61,7 @@ #include "ssl_locl.h" #ifndef OPENSSL_NO_FP_API -int SSL_SESSION_print_fp(FILE *fp, SSL_SESSION *x) +int SSL_SESSION_print_fp(FILE *fp, const SSL_SESSION *x) { BIO *b; int ret; @@ -78,7 +78,7 @@ int SSL_SESSION_print_fp(FILE *fp, SSL_SESSION *x) } #endif -int SSL_SESSION_print(BIO *bp, SSL_SESSION *x) +int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x) { unsigned int i; const char *s; -- cgit v1.2.3