| 1 |
diff -up openssl-1.0.0-beta3/doc/ssl/SSL_CIPHER_get_name.pod.const openssl-1.0.0-beta3/doc/ssl/SSL_CIPHER_get_name.pod
|
| 2 |
--- openssl-1.0.0-beta3/doc/ssl/SSL_CIPHER_get_name.pod.const 2009-02-14 22:49:37.000000000 +0100
|
| 3 |
+++ openssl-1.0.0-beta3/doc/ssl/SSL_CIPHER_get_name.pod 2009-08-22 16:15:32.000000000 +0200
|
| 4 |
@@ -11,7 +11,7 @@ SSL_CIPHER_get_name, SSL_CIPHER_get_bits
|
| 5 |
const char *SSL_CIPHER_get_name(const SSL_CIPHER *cipher);
|
| 6 |
int SSL_CIPHER_get_bits(const SSL_CIPHER *cipher, int *alg_bits);
|
| 7 |
char *SSL_CIPHER_get_version(const SSL_CIPHER *cipher);
|
| 8 |
- char *SSL_CIPHER_description(SSL_CIPHER *cipher, char *buf, int size);
|
| 9 |
+ char *SSL_CIPHER_description(const SSL_CIPHER *cipher, char *buf, int size);
|
| 10 |
|
| 11 |
=head1 DESCRIPTION
|
| 12 |
|
| 13 |
diff -up openssl-1.0.0-beta3/ssl/ssl_ciph.c.const openssl-1.0.0-beta3/ssl/ssl_ciph.c
|
| 14 |
--- openssl-1.0.0-beta3/ssl/ssl_ciph.c.const 2009-08-22 15:56:12.000000000 +0200
|
| 15 |
+++ openssl-1.0.0-beta3/ssl/ssl_ciph.c 2009-08-22 15:56:12.000000000 +0200
|
| 16 |
@@ -1458,7 +1458,7 @@ STACK_OF(SSL_CIPHER) *ssl_create_cipher_
|
| 17 |
return(cipherstack);
|
| 18 |
}
|
| 19 |
|
| 20 |
-char *SSL_CIPHER_description(SSL_CIPHER *cipher, char *buf, int len)
|
| 21 |
+char *SSL_CIPHER_description(const SSL_CIPHER *cipher, char *buf, int len)
|
| 22 |
{
|
| 23 |
int is_export,pkl,kl;
|
| 24 |
const char *ver,*exp_str;
|
| 25 |
diff -up openssl-1.0.0-beta3/ssl/ssl.h.const openssl-1.0.0-beta3/ssl/ssl.h
|
| 26 |
--- openssl-1.0.0-beta3/ssl/ssl.h.const 2009-08-22 15:56:11.000000000 +0200
|
| 27 |
+++ openssl-1.0.0-beta3/ssl/ssl.h 2009-08-22 15:56:12.000000000 +0200
|
| 28 |
@@ -1638,7 +1638,7 @@ long SSL_get_default_timeout(const SSL *
|
| 29 |
|
| 30 |
int SSL_library_init(void );
|
| 31 |
|
| 32 |
-char *SSL_CIPHER_description(SSL_CIPHER *,char *buf,int size);
|
| 33 |
+char *SSL_CIPHER_description(const SSL_CIPHER *,char *buf,int size);
|
| 34 |
STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *sk);
|
| 35 |
|
| 36 |
SSL *SSL_dup(SSL *ssl);
|