~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_time.cc

  • Committer: Brian Aker
  • Date: 2009-05-22 19:14:57 UTC
  • mfrom: (1022.2.21 mordred)
  • Revision ID: brian@gaz-20090522191457-35hq07kukf6ybv16
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
718
718
  my_time.hour=         (uint32_t) l_time->tm_hour;
719
719
  my_time.minute=       (uint32_t) l_time->tm_min;
720
720
  my_time.second=       (uint32_t) l_time->tm_sec;
 
721
  my_time.time_type=    DRIZZLE_TIMESTAMP_NONE;
 
722
  my_time.second_part=  0;
 
723
  my_time.neg=          false;
721
724
  my_system_gmt_sec(&my_time, &my_time_zone, &not_used); /* Init my_time_zone */
722
725
}
723
726