[BACK]Return to strftime.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / time

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libc/time/strftime.c between version 1.9 and 1.10

version 1.9, 1999/11/05 19:21:12 version 1.10, 2000/01/15 16:59:05
Line 154  _fmt(format, t, pt, ptlim)
Line 154  _fmt(format, t, pt, ptlim)
                                 if (!_conv(t->tm_mday, 2, ' ', pt, ptlim))                                  if (!_conv(t->tm_mday, 2, ' ', pt, ptlim))
                                         return (0);                                          return (0);
                                 continue;                                  continue;
                           case 'F':
                                   if (!_fmt("%Y-%m-%d", t, pt, ptlim))
                                           return (0);
                                   continue;
                         case 'H':                          case 'H':
                                 if (!_conv(t->tm_hour, 2, '0', pt, ptlim))                                  if (!_conv(t->tm_hour, 2, '0', pt, ptlim))
                                         return (0);                                          return (0);

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

CVSweb <webmaster@jp.NetBSD.org>