Commit c642248
Replace bespoke cookie parsing with ap_cookie_read() (#202)
* Replace bespoke cookie parsing with ap_cookie_read()
* Fix escaping for small chars in urlEncode()
The %%%x format string resolves to the literal "%" and the hex representation
of the character to be encoded, but is always asssumed to return three characters.
However for a small value like e.g. 7 it would return "%7" instead. None of the
current two call sites of the function use such a small value, but apply correct
padding just in case the function might be used elsewhere in the future.
* Update src/mod_auth_cas.c
Co-authored-by: David Hawes <[email protected]>
* Update docs to require Apache 2.4
The upstream support for Apache 2.2.x ended on 2018-01-01 and also none of
the long term Linux distros still support it, looking at the latest still
supported releases:
* Debian 8 ELTS has Apache httpd 2.4.10
* Ubuntu 14.4 has Apache httpd 2.4.5
* RHEL 7 has Apache httpd 2.4.6
* SLES 11 has Apache httpd 2.4.23
Co-authored-by: Moritz Muehlenhoff <[email protected]>
Co-authored-by: Moritz Muehlenhoff <[email protected]>
Co-authored-by: David Hawes <[email protected]>1 parent de41363 commit c642248
2 files changed
+6
-23
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
50 | | - | |
| 50 | + | |
51 | 51 | | |
52 | 52 | | |
53 | 53 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
| 56 | + | |
56 | 57 | | |
57 | 58 | | |
58 | 59 | | |
| |||
780 | 781 | | |
781 | 782 | | |
782 | 783 | | |
783 | | - | |
784 | | - | |
785 | | - | |
786 | | - | |
787 | | - | |
788 | | - | |
789 | | - | |
790 | | - | |
791 | | - | |
792 | | - | |
793 | | - | |
794 | | - | |
795 | | - | |
796 | | - | |
797 | | - | |
798 | | - | |
799 | | - | |
800 | | - | |
801 | | - | |
802 | | - | |
803 | | - | |
| 784 | + | |
| 785 | + | |
| 786 | + | |
804 | 787 | | |
805 | 788 | | |
806 | 789 | | |
| |||
916 | 899 | | |
917 | 900 | | |
918 | 901 | | |
919 | | - | |
| 902 | + | |
920 | 903 | | |
921 | 904 | | |
922 | 905 | | |
| |||
0 commit comments