diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-02 11:49:25 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-02 11:49:25 +0200 |
commit | 4b624d07705ad68e89c2bb397ba5499d698efc7b (patch) | |
tree | e777be87b8010a0ccee76ed28dc83a16dd499916 /libbb | |
parent | 44f174e61b9f02e1d9210d292886498cee4aced7 (diff) | |
download | busybox-w32-4b624d07705ad68e89c2bb397ba5499d698efc7b.tar.gz busybox-w32-4b624d07705ad68e89c2bb397ba5499d698efc7b.tar.bz2 busybox-w32-4b624d07705ad68e89c2bb397ba5499d698efc7b.zip |
small commit tweak in parse_datestr, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/time.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/time.c b/libbb/time.c index 0816022b9..b31683b67 100644 --- a/libbb/time.c +++ b/libbb/time.c | |||
@@ -66,7 +66,7 @@ void FAST_FUNC parse_datestr(const char *date_str, struct tm *tm_time) | |||
66 | * dd Day, a number from 1 to 31 | 66 | * dd Day, a number from 1 to 31 |
67 | * HH Hour, a number from 0 to 23 | 67 | * HH Hour, a number from 0 to 23 |
68 | * MM Minutes, a number from 0 to 59 | 68 | * MM Minutes, a number from 0 to 59 |
69 | * ss Seconds, a number from 0 to 61 (with leap seconds) | 69 | * .SS Seconds, a number from 0 to 61 (with leap seconds) |
70 | * Everything but the minutes is optional | 70 | * Everything but the minutes is optional |
71 | * | 71 | * |
72 | * This coincides with the format of "touch -t TIME" | 72 | * This coincides with the format of "touch -t TIME" |
@@ -112,7 +112,7 @@ void FAST_FUNC parse_datestr(const char *date_str, struct tm *tm_time) | |||
112 | /* Adjust month from 1-12 to 0-11 */ | 112 | /* Adjust month from 1-12 to 0-11 */ |
113 | tm_time->tm_mon -= 1; | 113 | tm_time->tm_mon -= 1; |
114 | } else | 114 | } else |
115 | /* yyyymmddHHMM[.SS] */ | 115 | /* ccyymmddHHMM[.SS] */ |
116 | if (len == 12 && sscanf(date_str, "%4u%2u%2u%2u%2u%c", | 116 | if (len == 12 && sscanf(date_str, "%4u%2u%2u%2u%2u%c", |
117 | &tm_time->tm_year, | 117 | &tm_time->tm_year, |
118 | &tm_time->tm_mon, | 118 | &tm_time->tm_mon, |