~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqlimport.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:
391
391
  if (opt_local_file)
392
392
    mysql_options(mysql,MYSQL_OPT_LOCAL_INFILE,
393
393
                  (char*) &opt_local_file);
394
 
#ifdef HAVE_OPENSSL
395
 
  if (opt_use_ssl)
396
 
    mysql_ssl_set(mysql, opt_ssl_key, opt_ssl_cert, opt_ssl_ca,
397
 
                  opt_ssl_capath, opt_ssl_cipher);
398
 
  mysql_options(mysql,MYSQL_OPT_SSL_VERIFY_SERVER_CERT,
399
 
                (char*)&opt_ssl_verify_server_cert);
400
 
#endif
401
394
  if (opt_protocol)
402
395
    mysql_options(mysql,MYSQL_OPT_PROTOCOL,(char*)&opt_protocol);
403
396
#ifdef HAVE_SMEM