TIME_GetTZAsStr problem with "UTC"

Filip Navara xnavara at volny.cz
Sat Oct 2 04:22:23 CDT 2004


Jacek Caban wrote:

> Hi.
>
> I got this communicat:
>
> fixme:ntdll:TIME_GetTZAsStr Can't match system time zone name "UTC" to 
> an entry in TZ_INFO
> fixme:ntdll:TIME_GetTZAsStr Please add appropriate entry to TZ_INFO 
> and submit as patch to wine-patches
>
> so I wanted to send patch, but "UTC" is time convencion, not Local 
> Time Zone.

Changelog:
Add UTC to the time zone list.


-------------- next part --------------
Index: dlls/ntdll/time.c
===================================================================
RCS file: /home/wine/wine/dlls/ntdll/time.c,v
retrieving revision 1.47
diff -u -r1.47 time.c
--- dlls/ntdll/time.c	7 Sep 2004 23:01:34 -0000	1.47
+++ dlls/ntdll/time.c	2 Oct 2004 09:18:29 -0000
@@ -149,6 +149,9 @@
    {"GMT",
     {'G','M','T',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
     0, 0},
+   {"UTC",
+    {'G','M','T',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
+    0, 0},
    {"CEST",
     {'C','e','n','t','r','a','l',' ','E','u','r','o','p','e',' ','S','t','a',
      'n','d','a','r','d',' ','T','i','m','e','\0'}, -120, 1},


More information about the wine-patches mailing list