Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-01 23:34:56 +0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-01 23:34:56 +0400
commit68849b544258cafdf42f3ebe9772ee7a346f7147 (patch)
tree908c0d82bd1f423abff08162cc5156f736a016cd /test-date.c
parent198b0fb635ed8a007bac0c16eab112c5e2c7995c (diff)
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.c2
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;
}