diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-01 12:34:56 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-01 12:34:56 -0700 |
commit | 68849b544258cafdf42f3ebe9772ee7a346f7147 (patch) | |
tree | 908c0d82bd1f423abff08162cc5156f736a016cd /test-date.c | |
parent | 198b0fb635ed8a007bac0c16eab112c5e2c7995c (diff) | |
download | git-68849b544258cafdf42f3ebe9772ee7a346f7147.tar.gz |
date handling: handle "AM"/"PM" on time
And be a bitmore careful about matching: if we don't recognize a word
or a number, we skip the whole thing, rather than trying the next character
in that word/number.
Finally: since ctime() adds the final '\n', don't add another one in test-date.
Diffstat (limited to 'test-date.c')
-rw-r--r-- | test-date.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-date.c b/test-date.c index 8ec41c3118..6fe3e28b9d 100644 --- a/test-date.c +++ b/test-date.c @@ -14,7 +14,7 @@ int main(int argc, char **argv) memcpy(result, "bad", 4); parse_date(argv[i], result, sizeof(result)); t = strtoul(result, NULL, 0); - printf("%s -> %s -> %s\n", argv[i], result, ctime(&t)); + printf("%s -> %s -> %s", argv[i], result, ctime(&t)); } return 0; } |