Fix minor printing error. Fixes #1265.
This commit is contained in:
parent
f26810df6c
commit
be6c007885
1 changed files with 4 additions and 4 deletions
|
@ -424,23 +424,23 @@ page_status(http_connection_t *hc,
|
|||
htsbuf_qprintf(hq,
|
||||
"<recording>"
|
||||
"<start>"
|
||||
"<date>%02d/%02d/%02d</date>"
|
||||
"<date>%d/%02d/%02d</date>"
|
||||
"<time>%02d:%02d</time>"
|
||||
"<unixtime>%"PRItime_t"</unixtime>"
|
||||
"<extra_start>%"PRItime_t"</extra_start>"
|
||||
"</start>"
|
||||
"<stop>"
|
||||
"<date>%02d/%02d/%02d</date>"
|
||||
"<date>%d/%02d/%02d</date>"
|
||||
"<time>%02d:%02d</time>"
|
||||
"<unixtime>%"PRItime_t"</unixtime>"
|
||||
"<extra_stop>%"PRItime_t"</extra_stop>"
|
||||
"</stop>"
|
||||
"<title>%s</title>",
|
||||
a.tm_year + 1900, a.tm_mon, a.tm_mday,
|
||||
a.tm_year + 1900, a.tm_mon + 1, a.tm_mday,
|
||||
a.tm_hour, a.tm_min,
|
||||
de->de_start,
|
||||
de->de_start_extra,
|
||||
b.tm_year+1900, b.tm_mon, b.tm_mday,
|
||||
b.tm_year+1900, b.tm_mon + 1, b.tm_mday,
|
||||
b.tm_hour, b.tm_min,
|
||||
de->de_stop,
|
||||
de->de_stop_extra,
|
||||
|
|
Loading…
Add table
Reference in a new issue