~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqlshow.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:
105
105
  mysql_init(&mysql);
106
106
  if (opt_compress)
107
107
    mysql_options(&mysql,MYSQL_OPT_COMPRESS,NullS);
108
 
#ifdef HAVE_OPENSSL
109
 
  if (opt_use_ssl)
110
 
    mysql_ssl_set(&mysql, opt_ssl_key, opt_ssl_cert, opt_ssl_ca,
111
 
                  opt_ssl_capath, opt_ssl_cipher);
112
 
  mysql_options(&mysql,MYSQL_OPT_SSL_VERIFY_SERVER_CERT,
113
 
                (char*)&opt_ssl_verify_server_cert);
114
 
#endif
115
108
  if (opt_protocol)
116
109
    mysql_options(&mysql,MYSQL_OPT_PROTOCOL,(char*)&opt_protocol);
117
110
#ifdef HAVE_SMEM