~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.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:
515
515
static void print_version(void)
516
516
{
517
517
  printf("%s  Ver %s Distrib %s, for %s (%s)\n",my_progname,DUMP_VERSION,
518
 
         MYSQL_SERVER_VERSION,SYSTEM_TYPE,MACHINE_TYPE);
 
518
         drizzle_get_client_info(),SYSTEM_TYPE,MACHINE_TYPE);
519
519
} /* print_version */
520
520
 
521
521
 
568
568
    {
569
569
      fprintf(sql_file,
570
570
              "-- DRIZZLE dump %s  Distrib %s, for %s (%s)\n--\n",
571
 
              DUMP_VERSION, MYSQL_SERVER_VERSION, SYSTEM_TYPE, MACHINE_TYPE);
 
571
              DUMP_VERSION, drizzle_get_client_info(),
 
572
              SYSTEM_TYPE, MACHINE_TYPE);
572
573
      fprintf(sql_file, "-- Host: %s    Database: %s\n",
573
574
              current_host ? current_host : "localhost", db_name ? db_name :
574
575
              "");