Module Name: src
Committed By: lukem
Date: Mon Mar 8 05:00:51 UTC 2010
Modified Files:
src/external/bsd/openldap/dist/libraries/libldap: tls_o.c
Log Message:
fix const warning
To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/external/bsd/openldap/dist/libraries/libldap/tls_o.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/openldap/dist/libraries/libldap/tls_o.c
diff -u src/external/bsd/openldap/dist/libraries/libldap/tls_o.c:1.1.1.1 src/external/bsd/openldap/dist/libraries/libldap/tls_o.c:1.2
--- src/external/bsd/openldap/dist/libraries/libldap/tls_o.c:1.1.1.1 Mon Mar 8 02:14:16 2010
+++ src/external/bsd/openldap/dist/libraries/libldap/tls_o.c Mon Mar 8 05:00:51 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: tls_o.c,v 1.1.1.1 2010/03/08 02:14:16 lukem Exp $ */
+/* $NetBSD: tls_o.c,v 1.2 2010/03/08 05:00:51 lukem Exp $ */
/* tls_o.c - Handle tls/ssl using OpenSSL */
/* OpenLDAP: pkg/ldap/libraries/libldap/tls_o.c,v 1.5.2.10 2009/10/30 17:55:19 quanah Exp */
@@ -663,7 +663,7 @@
tlso_session_strength( tls_session *sess )
{
tlso_session *s = (tlso_session *)sess;
- SSL_CIPHER *c;
+ const SSL_CIPHER *c;
c = SSL_get_current_cipher(s);
return SSL_CIPHER_get_bits(c, NULL);