Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • pike pike
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 104
    • Issues 104
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Container Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • pikelang
  • pikepike
  • Issues
  • #3357
Closed
Open
Issue created Feb 14, 2003 by Peter Bortas@zinoOwner

Date bug in X509.pmod

Imported from http://bugzilla.roxen.com/bugzilla/show_bug.cgi?id=3357

Reported by Marcus Wellhardh wellhard@roxen.com

The parse_time function in Tools.pmod/X509.pmod does not accept the last day in a month.

Change: if ( (m->mday <= 0) || (m->mday >= Calendar.ISO.Year(m->year + 1900) ->month(m->mon + 1)->number_of_days()))

To: if ( (m->mday <= 0) || (m->mday > Calendar.ISO.Year(m->year + 1900) ->month(m->mon + 1)->number_of_days()))

Assignee
Assign to
Time tracking