Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix seg fault when using cookie based auth on 64 bit system #2

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Sep 29, 2011

  1. %lld was for long long int was causing segmentation faults when using…

    … cookie based authentication. Changed it to %ld , to store time, as it was 64 bit based.
    Joshua Gross committed Sep 29, 2011
    Configuration menu
    Copy the full SHA
    51562a7 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2011

  1. Earlier commit changed it to %lld to %ld for printing time. After bro…

    …wsing apache doc, apache has a predefined type to handle different time structures on different systems, changing to "APR_TIME_T_FMT" instead of %ld, testing and working so far.
    Joshua Gross committed Sep 30, 2011
    Configuration menu
    Copy the full SHA
    f48b9ba View commit details
    Browse the repository at this point in the history