Package: libapache2-mod-auth-tkt / 2.3.99~b1-1

Metadata

Package Version Patches format
libapache2-mod-auth-tkt 2.3.99~b1-1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
dont_install_module.diff | (download)

src/Makefile | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 don't install module
 The makefiles installs the module in /usr/lib/apache2 instead of
 $PREFIX/usr/lib/apache2.
 This patch disables the installation. The module will be installed by
 dh_apache2.
Fix sizeof calls in MEMSET_BZERO.patch | (download)

src/sha2.c | 12 6 + 6 - 0 !
1 file changed, 6 insertions(+), 6 deletions(-)

 fix sizeof calls in memset_bzero

This fixes a gcc warning. The fix was taken from the newer version of sha2.c
in the apr source.

authtypeTKT.diff | (download)

src/mod_auth_tkt.c | 23 19 + 4 - 0 !
1 file changed, 19 insertions(+), 4 deletions(-)

 define authtype tkt
 This patch introduces a new authtype 'TKT', to allow usage of the module
 without redirect urls or guest access. In that case, it is only possible to
 get access if the user already has a cookie from a previous visit to the
 login page. Otherwise, access will be denied.
fix_inet_aton_failure.diff | (download)

src/mod_auth_tkt.c | 3 3 + 0 - 0 !
1 file changed, 3 insertions(+)

 fix failure when inet_aton fails
 When inet_aton fails, log the failure. Also, catch the NULL return from
 ticket_digest and return false instead of crashing.
 This happens when the client connects using IPv6. Checking IPv6 addresses is
 currently not supported. Setting TKTAuthIgnoreIP on (not checking IP
 addresses) does work with IPv6.