Project

General

Profile

Actions

Bug #1688

closed

mod_secdownload problem on QNX

Added by Anonymous almost 16 years ago. Updated over 15 years ago.

Status:
Fixed
Priority:
Normal
Category:
mod_secdownload
Target version:
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

Actions #1

Updated by stbuehler over 15 years ago

  • Status changed from New to Fixed
  • Resolution set to fixed

Fixed in r2255

Actions

Also available in: Atom