~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/time/makedate.cc

  • Committer: Jay Pipes
  • Date: 2009-02-28 17:49:22 UTC
  • mto: (910.2.6 mordred-noatomics)
  • mto: This revision was merged to the branch mainline in revision 908.
  • Revision ID: jpipes@serialcoder-20090228174922-jczgt4d0662fqmnf
Merging in old r902 temporal changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
    get_date_from_daynr(days,&l_time.year,&l_time.month,&l_time.day);
55
55
    if (str->alloc(MAX_DATE_STRING_REP_LENGTH))
56
56
      goto err;
57
 
    make_date((DATE_TIME_FORMAT *) 0, &l_time, str);
 
57
    make_date(&l_time, str);
58
58
    return str;
59
59
  }
60
60