Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
37bc441d
Commit
37bc441d
authored
Feb 14, 2005
by
Marcelo Duarte
Committed by
Alexandre Julliard
Feb 14, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Correct time zone for BRT and BRST.
- Better explained fixme.
parent
fe2b31a5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
time.c
dlls/ntdll/time.c
+7
-6
No files found.
dlls/ntdll/time.c
View file @
37bc441d
...
...
@@ -145,11 +145,11 @@ static const struct tagTZ_INFO TZ_INFO[] =
{
'N'
,
'e'
,
'w'
,
'f'
,
'o'
,
'u'
,
'n'
,
'd'
,
'l'
,
'a'
,
'n'
,
'd'
,
' '
,
'S'
,
't'
,
'a'
,
'n'
,
'd'
,
'a'
,
'r'
,
'd'
,
' '
,
'T'
,
'i'
,
'm'
,
'e'
,
'\0'
},
150
,
1
},
{
"BRT"
,
{
'
E'
,
'.'
,
' '
,
'S'
,
'o'
,
'u'
,
't'
,
'h'
,
' '
,
'A'
,
'm'
,
'e'
,
'r'
,
'i'
,
'c'
,
'a'
,
' '
,
'S
'
,
'
t'
,
'a'
,
'n'
,
'd'
,
'a'
,
'r'
,
'd'
,
'
'
,
'T'
,
'i'
,
'm'
,
'e'
,
'\0'
},
180
,
0
},
{
'
B'
,
'r'
,
'a'
,
'z'
,
'i'
,
'l'
,
'i'
,
'a'
,
'n'
,
' '
,
'S'
,
't'
,
'a'
,
'n'
,
'd'
,
'a'
,
'r'
,
'd
'
,
' '
,
'T'
,
'i'
,
'm'
,
'e'
,
'\0'
},
180
,
0
},
{
"BRST"
,
{
'
E'
,
'.'
,
' '
,
'B'
,
'r'
,
'a'
,
'z'
,
'i'
,
'l'
,
'i'
,
'a'
,
'n'
,
' '
,
'S'
,
't'
,
'a'
,
'n'
,
'd
'
,
'
a'
,
'r'
,
'd'
,
' '
,
'T'
,
'i'
,
'm'
,
'e'
,
'\0'
},
180
,
0
},
{
'
B'
,
'r'
,
'a'
,
'z'
,
'i'
,
'l'
,
'i'
,
'a'
,
'n'
,
' '
,
'S'
,
'u'
,
'm'
,
'm'
,
'e'
,
'r
'
,
'
'
,
'T'
,
'i'
,
'm'
,
'e'
,
'\0'
},
120
,
1
},
{
"ART"
,
{
'S'
,
'A'
,
' '
,
'E'
,
'a'
,
's'
,
't'
,
'e'
,
'r'
,
'n'
,
' '
,
'S'
,
't'
,
'a'
,
'n'
,
'd'
,
'a'
,
'r'
,
'd'
,
' '
,
'T'
,
'i'
,
'm'
,
'e'
,
'\0'
},
180
,
0
},
...
...
@@ -815,8 +815,9 @@ static const WCHAR* TIME_GetTZAsStr (time_t utc, int bias, int dst)
)
return
TZ_INFO
[
i
].
psTZWindows
;
}
FIXME
(
"Can't match system time zone name
\"
%s
\"
to an entry in TZ_INFO
\n
"
,
psTZName
);
FIXME
(
" Please add appropriate entry to TZ_INFO and submit as patch to wine-patches
\n
"
);
FIXME
(
"Can't match system time zone name
\"
%s
\"
, bias=%d and dst=%d "
"to an entry in TZ_INFO. Please add appropriate entry to "
"TZ_INFO and submit as patch to wine-patches
\n
"
,
psTZName
,
bias
,
dst
);
return
NULL
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment