Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
8a6f41d8
Commit
8a6f41d8
authored
Dec 04, 2012
by
Mark Andrews
Browse files
3430. [bug] win32: isc_time_formatISO8601 was missing the
'T' between the date and time. [RT #32044]
parent
3ff483ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
8a6f41d8
3430. [bug] win32: isc_time_formatISO8601 was missing the
'T' between the date and time. [RT #32044]
3429. [bug] dns_zone_getserial2 could a return success without
returning a valid serial. [RT #32007]
...
...
lib/isc/win32/time.c
View file @
8a6f41d8
...
...
@@ -313,7 +313,7 @@ isc_time_formatISO8601(const isc_time_t *t, char *buf, unsigned int len) {
GetTimeFormat
(
LOCALE_NEUTRAL
,
TIME_NOTIMEMARKER
|
TIME_FORCE24HOURFORMAT
,
&
st
,
"hh':'mm':'ss"
,
TimeBuf
,
50
);
snprintf
(
buf
,
len
,
"%s%sZ"
,
DateBuf
,
TimeBuf
);
snprintf
(
buf
,
len
,
"%s
T
%sZ"
,
DateBuf
,
TimeBuf
);
}
else
{
buf
[
0
]
=
0
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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