~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.c

  • Committer: Monty Taylor
  • Date: 2008-07-23 23:21:09 UTC
  • mto: (202.1.22 codestyle)
  • mto: This revision was merged to the branch mainline in revision 212.
  • Revision ID: monty@inaugust.com-20080723232109-x4h6ra0n7daq5lda
Renamed mysql_init to drizzle_create.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1244
1244
    goto err;
1245
1245
  }
1246
1246
 
1247
 
  kill_mysql= mysql_init(kill_mysql);
 
1247
  kill_mysql= drizzle_create(kill_mysql);
1248
1248
  if (!mysql_real_connect(kill_mysql,current_host, current_user, opt_password,
1249
1249
                          "", opt_mysql_port, opt_mysql_unix_port,0))
1250
1250
  {
3908
3908
    connected= 0;
3909
3909
    mysql_close(&mysql);
3910
3910
  }
3911
 
  mysql_init(&mysql);
 
3911
  drizzle_create(&mysql);
3912
3912
  if (opt_connect_timeout)
3913
3913
  {
3914
3914
    uint timeout=opt_connect_timeout;