~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqldump.c

  • Committer: Mark Atwood
  • Date: 2008-07-01 21:25:46 UTC
  • mto: This revision was merged to the branch mainline in revision 45.
  • Revision ID: mark@localhost.localdomain-20080701212546-jzs7ljtwcp2dcmgd
Remove all OpenSSL and all YaSSL code

Show diffs side-by-side

added added

removed removed

Lines of Context:
1407
1407
  mysql_init(&mysql_connection);
1408
1408
  if (opt_compress)
1409
1409
    mysql_options(&mysql_connection,MYSQL_OPT_COMPRESS,NullS);
1410
 
#ifdef HAVE_OPENSSL
1411
 
  if (opt_use_ssl)
1412
 
    mysql_ssl_set(&mysql_connection, opt_ssl_key, opt_ssl_cert, opt_ssl_ca,
1413
 
                  opt_ssl_capath, opt_ssl_cipher);
1414
 
  mysql_options(&mysql_connection,MYSQL_OPT_SSL_VERIFY_SERVER_CERT,
1415
 
                (char*)&opt_ssl_verify_server_cert);
1416
 
#endif
1417
1410
  if (opt_protocol)
1418
1411
    mysql_options(&mysql_connection,MYSQL_OPT_PROTOCOL,(char*)&opt_protocol);
1419
1412
#ifdef HAVE_SMEM