dougm 02/03/24 13:00:06
Modified: . Changes
src/modules/perl perl_config.c
Log:
Submitted by: John Kelly <[EMAIL PROTECTED]>
Reviewed by: dougm
allow $r->auth_name and $r->auth_type to be set on win32
Revision Changes Path
1.632 +3 -0 modperl/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/modperl/Changes,v
retrieving revision 1.631
retrieving revision 1.632
diff -u -r1.631 -r1.632
--- Changes 24 Mar 2002 20:57:23 -0000 1.631
+++ Changes 24 Mar 2002 21:00:05 -0000 1.632
@@ -10,6 +10,9 @@
=item 1.26_01-dev
+allow $r->auth_name and $r->auth_type to be set on win32
+[John Kelly <[EMAIL PROTECTED]>]
+
fix compilation for win32 w/ apache 1.3.22+
[Randy Kobes <[EMAIL PROTECTED]>]
1.113 +0 -8 modperl/src/modules/perl/perl_config.c
Index: perl_config.c
===================================================================
RCS file: /home/cvs/modperl/src/modules/perl/perl_config.c,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- perl_config.c 24 Mar 2002 20:45:17 -0000 1.112
+++ perl_config.c 24 Mar 2002 21:00:06 -0000 1.113
@@ -142,7 +142,6 @@
char *mod_perl_auth_name(request_rec *r, char *val)
{
-#ifndef WIN32
core_dir_config *conf =
(core_dir_config *)get_module_config(r->per_dir_config, &core_module);
@@ -153,14 +152,10 @@
}
return conf->auth_name;
-#else
- return (char *) auth_name(r);
-#endif
}
char *mod_perl_auth_type(request_rec *r, char *val)
{
-#ifndef WIN32
core_dir_config *conf =
(core_dir_config *)get_module_config(r->per_dir_config, &core_module);
@@ -171,9 +166,6 @@
}
return conf->auth_type;
-#else
- return (char *) auth_type(r);
-#endif
}
void mod_perl_dir_env(request_rec *r, perl_dir_config *cld)