~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleadmin.cc

  • Committer: Monty Taylor
  • Date: 2008-09-15 00:46:33 UTC
  • mfrom: (383.1.55 client-split)
  • Revision ID: monty@inaugust.com-20080915004633-fmjw27fi41cxs35w
Merged from client-split.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
char *host= NULL, *user= NULL, *opt_password= NULL;
35
35
static bool interrupted= false, opt_verbose= false,tty_password= false; 
36
 
static uint8_t opt_protocol= DRIZZLE_PROTOCOL_TCP;  
37
36
static uint32_t tcp_port= 0, option_wait= 0, option_silent= 0;
38
37
static uint32_t my_end_arg;
39
38
static uint32_t opt_connect_timeout, opt_shutdown_timeout;
192
191
    uint tmp=opt_connect_timeout;
193
192
    drizzle_options(&drizzle,DRIZZLE_OPT_CONNECT_TIMEOUT, (char*) &tmp);
194
193
  }
195
 
  /* force drizzleadmin to use TCP */
196
 
  drizzle_options(&drizzle, DRIZZLE_OPT_PROTOCOL, (char*)&opt_protocol);
197
194
 
198
195
  error_flags= (myf)0;
199
196