~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleadmin.cc

  • Committer: Brian Aker
  • Date: 2009-02-20 22:48:37 UTC
  • Revision ID: brian@tangent.org-20090220224837-fw5wrf46n4ru3e6a
First pass of stripping uint

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
extern "C" bool get_one_option(int optid, const struct my_option *opt,
49
49
                               char *argument);
50
50
static int execute_commands(DRIZZLE *drizzle,int argc, char **argv);
51
 
static bool sql_connect(DRIZZLE *drizzle, uint wait);
 
51
static bool sql_connect(DRIZZLE *drizzle, uint32_t wait);
52
52
 
53
53
/*
54
54
  The order of commands must be the same as command_names,
224
224
 
225
225
  if (opt_connect_timeout)
226
226
  {
227
 
    uint tmp=opt_connect_timeout;
 
227
    uint32_t tmp=opt_connect_timeout;
228
228
    drizzleclient_options(&drizzle,DRIZZLE_OPT_CONNECT_TIMEOUT, (char*) &tmp);
229
229
  }
230
230
 
263
263
  interrupted=1;
264
264
}
265
265
 
266
 
static bool sql_connect(DRIZZLE *drizzle, uint wait)
 
266
static bool sql_connect(DRIZZLE *drizzle, uint32_t wait)
267
267
{
268
268
  bool info=0;
269
269