Bug 15997 – Wrong constant value for ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED in winhttp
Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P1
Component
druntime
Product
D
Version
D2
Platform
All
OS
Windows
Creation time
2016-05-06T12:37:00Z
Last change time
2016-10-01T11:45:00Z
Assigned to
nobody
Creator
mathias.lang
Comments
Comment #0 by mathias.lang — 2016-05-06T12:37:40Z
Currently the code reads as (L655):
```
ERROR_WINHTTP_RESEND_REQUEST = (WINHTTP_ERROR_BASE + 32),
ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED = (WINHTTP_ERROR_BASE, + 44),
ERROR_WINHTTP_CANNOT_CALL_BEFORE_OPEN = (WINHTTP_ERROR_BASE + 100),
```
Notice the comma exp on the second statement.
See https://github.com/dlang/druntime/pull/1561
Comment #1 by github-bugzilla — 2016-05-06T19:46:05Z