~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqldump.c

  • Committer: Brian Aker
  • Date: 2008-07-02 15:36:57 UTC
  • mfrom: (40.1.1 drizzle)
  • Revision ID: brian@tangent.org-20080702153657-nvx7sm2goic04ite
Mark's merge to drop SSL defines 

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