Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
3e3194f6
Commit
3e3194f6
authored
Jul 08, 2001
by
Patrik Stridvall
Committed by
Alexandre Julliard
Jul 08, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Added comment that code is broken.
- Silenced annoying long term winapi_check message.
parent
09da966c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
parsedt.c
dlls/oleaut32/parsedt.c
+3
-2
No files found.
dlls/oleaut32/parsedt.c
View file @
3e3194f6
...
...
@@ -703,7 +703,8 @@ DecodeDateTime(char **field, int *ftype, int nf,
if
(
IS_VALID_UTIME
(
tm
->
tm_year
,
tm
->
tm_mon
,
tm
->
tm_mday
))
{
#ifdef USE_POSIX_TIME
/* FIXME: The code below is not correct */
#if 0 /* defined(USE_POSIX_TIME) */
tm->tm_year -= 1900;
tm->tm_mon -= 1;
tm->tm_isdst = -1;
...
...
@@ -711,7 +712,7 @@ DecodeDateTime(char **field, int *ftype, int nf,
tm->tm_year += 1900;
tm->tm_mon += 1;
#if
def HAVE_INT_TIMEZONE
#if
0 /* defined(HAVE_INT_TIMEZONE) */
*tzp = ((tm->tm_isdst > 0) ? (timezone - 3600) : timezone);
#else /* !HAVE_INT_TIMEZONE */
...
...
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