~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqlcheck.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:
740
740
  mysql_init(&mysql_connection);
741
741
  if (opt_compress)
742
742
    mysql_options(&mysql_connection, MYSQL_OPT_COMPRESS, NullS);
743
 
#ifdef HAVE_OPENSSL
744
 
  if (opt_use_ssl)
745
 
    mysql_ssl_set(&mysql_connection, opt_ssl_key, opt_ssl_cert, opt_ssl_ca,
746
 
                  opt_ssl_capath, opt_ssl_cipher);
747
 
#endif
748
743
  if (opt_protocol)
749
744
    mysql_options(&mysql_connection,MYSQL_OPT_PROTOCOL,(char*)&opt_protocol);
750
745
#ifdef HAVE_SMEM