diff options
author | Andrew Tridgell <tridge@samba.org> | 1997-11-06 13:45:50 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1997-11-06 13:45:50 +0000 |
commit | 3670f3d9c0f1f96995eef8113fd9b433789ef844 (patch) | |
tree | 45dbd447349db13666199fbf75bf738f0db42770 | |
parent | ba5086d03e3ec29e0c866d339d0283b520fc669f (diff) | |
download | samba-3670f3d9c0f1f96995eef8113fd9b433789ef844.tar.gz samba-3670f3d9c0f1f96995eef8113fd9b433789ef844.tar.bz2 samba-3670f3d9c0f1f96995eef8113fd9b433789ef844.zip |
change from %D to %m/%d/%Y in timestring(). This doesn't really matter
as it is only for logging but it will prevent people from writing in
to say that we are not y2k compliant after running auto-diagnostic
tests.
(This used to be commit b4e55cd4765085fc2465c6ff757094e05eabc51e)
-rw-r--r-- | source3/lib/time.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/lib/time.c b/source3/lib/time.c index ad6b04484c..4eb508115d 100644 --- a/source3/lib/time.c +++ b/source3/lib/time.c @@ -457,19 +457,19 @@ char *timestring(void ) #ifdef NO_STRFTIME fstrcpy(TimeBuf, asctime(tm)); #elif defined(CLIX) || defined(CONVEX) - strftime(TimeBuf,100,"%m/%d/%y %I:%M:%S %p",tm); + strftime(TimeBuf,100,"%m/%d/%Y %I:%M:%S %p",tm); #elif defined(AMPM) - strftime(TimeBuf,100,"%D %r",tm); + strftime(TimeBuf,100,"%m/%d/%Y %r",tm); #elif defined(TZ_TIME) { int zone = TimeDiff(t); int absZoneMinutes = (zone<0 ? -zone : zone) / 60; - size_t len = strftime(TimeBuf,sizeof(TimeBuf)-6,"%D %T",tm); + size_t len = strftime(TimeBuf,sizeof(TimeBuf)-6,"%m/%d/%Y %T",tm); sprintf(TimeBuf+len," %c%02d%02d", zone<0?'+':'-',absZoneMinutes/60,absZoneMinutes%60); } #else - strftime(TimeBuf,100,"%D %T",tm); + strftime(TimeBuf,100,"%m/%d/%Y %T",tm); #endif return(TimeBuf); } |