~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-security

« back to all changes in this revision

Viewing changes to mysql-test/r/ssl_7937,nossl.result

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2015-06-13 21:09:48 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20150613210948-6b0ina6he3w5s307
Tags: 5.5.44-1ubuntu0.14.04.1
* SECURITY UPDATE: Update to 5.5.44 to fix security issues (LP: #1464895):
  - CVE-2015-3152
* Upstream also includes lots of line ending changes (from CRLF -> LF)
* Removed hotfix patch now included in upstream release (MDEV-8115)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
create procedure have_ssl()
 
2
select if(variable_value > '','yes','no') as 'have_ssl'
 
3
  from information_schema.session_status
 
4
where variable_name='ssl_cipher';
 
5
mysql --ssl-ca=cacert.pem -e "call test.have_ssl()"
 
6
have_ssl
 
7
no
 
8
mysql --ssl -e "call test.have_ssl()"
 
9
have_ssl
 
10
no
 
11
mysql --ssl-ca=cacert.pem --ssl-verify-server-cert -e "call test.have_ssl()"
 
12
ERROR 2026 (HY000): SSL connection error: SSL is required, but the server does not support it
 
13
mysql --ssl --ssl-verify-server-cert -e "call test.have_ssl()"
 
14
ERROR 2026 (HY000): SSL connection error: SSL is required, but the server does not support it
 
15
drop procedure have_ssl;