Actions
Bug #1688
closedmod_secdownload problem on QNX
ASK QUESTIONS IN Forums:
Description
Because time_t on QNX is unsigned int mod_secdownload will always get status 410.
A solution could be
if (srv->cur_ts - ts > p->conf.timeout || (int)(srv->cur_ts - ts) < -p->conf.timeout)
The original code is
if (srv->cur_ts - ts > p->conf.timeout || srv->cur_ts - ts < -p->conf.timeout)
-- richard.verzijl
Updated by stbuehler over 16 years ago
- Status changed from New to Fixed
- Resolution set to fixed
Fixed in r2255
Actions
Also available in: Atom