~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqlcheck.c

  • Committer: Stewart Smith
  • Date: 2008-06-30 01:08:38 UTC
  • mto: (12.3.1 drizzle-stew)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: stewart@flamingspork.com-20080630010838-zjkk8i03piv7b5df
remove more #ifdef __WIN__ code

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
  {"password", 'p',
138
138
   "Password to use when connecting to server. If password is not given it's solicited on the tty.",
139
139
   0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
140
 
#ifdef __WIN__
141
 
  {"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
142
 
   NO_ARG, 0, 0, 0, 0, 0, 0},
143
 
#endif
144
140
  {"port", 'P', "Port number to use for connection or 0 for default to, in "
145
141
   "order of preference, my.cnf, $MYSQL_TCP_PORT, "
146
142
#if MYSQL_PORT_DEFAULT == 0
308
304
    what_to_do= DO_CHECK;
309
305
    opt_upgrade= 1;
310
306
    break;
311
 
  case 'W':
312
 
#ifdef __WIN__
313
 
    opt_protocol = MYSQL_PROTOCOL_PIPE;
314
 
#endif
315
 
    break;
316
307
  case '#':
317
308
    DBUG_PUSH(argument ? argument : "d:t:o");
318
309
    debug_check_flag= 1;