~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleimport.c

  • Committer: Monty Taylor
  • Date: 2008-08-06 02:14:03 UTC
  • mto: (266.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 266.
  • Revision ID: monty@inaugust.com-20080806021403-f7eegu1nbvx10x66
Removed client insistence on version.h stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
   0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
122
122
  {"port", 'P', "Port number to use for connection or 0 for default to, in "
123
123
   "order of preference, my.cnf, $MYSQL_TCP_PORT, "
124
 
#if MYSQL_PORT_DEFAULT == 0
125
 
   "/etc/services, "
126
 
#endif
127
124
   "built-in default (" STRINGIFY_ARG(MYSQL_PORT) ").",
128
125
   (char**) &opt_drizzle_port,
129
126
   (char**) &opt_drizzle_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0,
159
156
static void print_version(void)
160
157
{
161
158
  printf("%s  Ver %s Distrib %s, for %s (%s)\n" ,my_progname,
162
 
    IMPORT_VERSION, MYSQL_SERVER_VERSION,SYSTEM_TYPE,MACHINE_TYPE);
 
159
    IMPORT_VERSION, drizzle_get_client_info(),SYSTEM_TYPE,MACHINE_TYPE);
163
160
}
164
161
 
165
162