I found a small language error. Sorry I can't produce a diff/patch. The error can be found as follows:
----Origineel Bericht---- Van : eggert@cs.ucla.edu Datum : 09/06/2017 02:50 Aan : tz@iana.org Onderwerp : [tz] [PROPOSED] Clean up configuration of tzname etc.
...... ......
diff --git a/strftime.c b/strftime.c index 4b9fd2c..d09a0db 100644 --- a/strftime.c +++ b/strftime.c .......
@@ -513,20 +509,20 @@ label: ** altzone and timezone), and the ** magic might not have the correct ** offset. Doing things correctly is - ** tricky and requires disobeying C99; + ** tricky and requires disobeying the standard; ** see GNU C strftime for details. ** For now, punt and conform to the ** standard, even though it's incorrect. ** - ** C99 says that %z must be replaced by the - ** empty string if the time zone is not + ** C99 and later that %z must be replaced by + ** the empty string if the time zone is not
..... The error is:
+ ** C99 and later that %z must be replaced by This should be: + ** C99 and later say that %z must be replaced by
--------------- Yours, Oscar van Vlijmen [ends]