[flashrom] [commit] r1817 - trunk

repository service svn at flashrom.org
Mon Jun 2 02:46:02 CEST 2014


Author: stefanct
Date: Mon Jun  2 02:46:02 2014
New Revision: 1817
URL: http://flashrom.org/trac/flashrom/changeset/1817

Log:
print_wiki.c: there is only one way to represent time.

ISO 8601.

Signed-off-by: Stefan Tauner <stefan.tauner at alumni.tuwien.ac.at>
Acked-by: Stefan Tauner <stefan.tauner at alumni.tuwien.ac.at>

Modified:
   trunk/print_wiki.c

Modified: trunk/print_wiki.c
==============================================================================
--- trunk/print_wiki.c	Mon Jun  2 02:45:57 2014	(r1816)
+++ trunk/print_wiki.c	Mon Jun  2 02:46:02 2014	(r1817)
@@ -31,7 +31,7 @@
 <div style=\"margin-top:0.5em; padding:0.5em 0.5em 0.5em 0.5em; \
 background-color:#eeeeee; text-align:left; border:1px solid #aabbcc;\">\
 <small>\n\
-'''Last update:''' %s(generated by flashrom %s)<br />\n\
+'''Last update:''' %s (generated by flashrom %s)<br />\n\
 The tables below are generated from flashrom's source by copying the output of '''flashrom -z'''.<br /><br />\n\
 A short explanation of the cells representing the support state follows:<br />\n\
 {| border=\"0\" valign=\"top\"\n\
@@ -443,8 +443,10 @@
 void print_supported_wiki(void)
 {
 	time_t t = time(NULL);
+	char buf[sizeof("1986-02-28T12:37:42Z")];
+	strftime(buf, sizeof(buf), "%Y-%m-%dT%H:%M:%SZ", gmtime(&t));
 
-	printf(wiki_header, ctime(&t), flashrom_version);
+	printf(wiki_header, buf, flashrom_version);
 	print_supported_chips_wiki(2);
 #if CONFIG_INTERNAL == 1
 	print_supported_chipsets_wiki(3);




More information about the flashrom mailing list