summaryrefslogtreecommitdiff
path: root/www/mod_auth_external/files
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2001-05-20 03:16:09 +0000
committerWill Andrews <will@FreeBSD.org>2001-05-20 03:16:09 +0000
commit6262db5109ebd0dd658c2ca1066866abc695ace3 (patch)
treed88dcac9afc72cd68f591a5d5b3f72a48c9c280c /www/mod_auth_external/files
parentAdd ftpproxy 1.0.1, a ftp proxy. (diff)
Add mod_auth_external 2.1.11, an Apache module that enables the use
of external mechanisms for user authentication. PR: 27321 Submitted by: Anders Nordby <anders@fix.no>
Notes
Notes: svn path=/head/; revision=42780
Diffstat (limited to 'www/mod_auth_external/files')
-rw-r--r--www/mod_auth_external/files/patch-mod_auth_external.c84
1 files changed, 84 insertions, 0 deletions
diff --git a/www/mod_auth_external/files/patch-mod_auth_external.c b/www/mod_auth_external/files/patch-mod_auth_external.c
new file mode 100644
index 000000000000..a25b52071e9a
--- /dev/null
+++ b/www/mod_auth_external/files/patch-mod_auth_external.c
@@ -0,0 +1,84 @@
+--- mod_auth_external.c.orig Tue May 15 00:49:04 2001
++++ mod_auth_external.c Tue May 15 00:50:55 2001
+@@ -239,7 +239,7 @@
+ * Structure for the module itself
+ */
+
+-module external_auth_module;
++module auth_external_module;
+
+ /*
+ * Data types for per-dir and server configuration
+@@ -303,7 +303,7 @@
+ extauth_server_config_rec *sc_rec;
+
+ sc_rec= ap_get_module_config( cmd->server->module_config,
+- &external_auth_module);
++ &auth_external_module);
+
+ ap_table_set( sc_rec->auth_extpath, keyword, path );
+
+@@ -323,7 +323,7 @@
+ extauth_server_config_rec *sc_rec;
+
+ sc_rec= ap_get_module_config( cmd->server->module_config,
+- &external_auth_module);
++ &auth_external_module);
+
+ ap_table_set( sc_rec->group_extpath, keyword, path );
+
+@@ -343,7 +343,7 @@
+ extauth_server_config_rec *sc_rec;
+
+ sc_rec= ap_get_module_config( cmd->server->module_config,
+- &external_auth_module);
++ &auth_external_module);
+
+ ap_table_set( sc_rec->auth_extmethod, keyword, method );
+
+@@ -361,7 +361,7 @@
+ extauth_server_config_rec *sc_rec;
+
+ sc_rec= ap_get_module_config( cmd->server->module_config,
+- &external_auth_module);
++ &auth_external_module);
+
+ ap_table_set( sc_rec->group_extmethod, keyword, method );
+
+@@ -565,11 +565,11 @@
+ {
+ extauth_dir_config_rec *dir_config_rec=
+ (extauth_dir_config_rec *)ap_get_module_config(r->per_dir_config,
+- &external_auth_module);
++ &auth_external_module);
+
+ extauth_server_config_rec *server_config_rec=
+ (extauth_server_config_rec *)ap_get_module_config(r->server->module_config,
+- &external_auth_module);
++ &auth_external_module);
+
+ const char *sent_pw;
+ int res, code= 1;
+@@ -679,11 +679,11 @@
+ {
+ extauth_dir_config_rec *dir_config_rec=
+ (extauth_dir_config_rec *)ap_get_module_config(r->per_dir_config,
+- &external_auth_module);
++ &auth_external_module);
+
+ extauth_server_config_rec *server_config_rec=
+ (extauth_server_config_rec *)ap_get_module_config(r->server->module_config,
+- &external_auth_module);
++ &auth_external_module);
+
+ conn_rec *c= r->connection;
+
+@@ -787,7 +787,7 @@
+ return AUTH_REQUIRED;
+ }
+
+-module external_auth_module= {
++module auth_external_module= {
+ STANDARD_MODULE_STUFF,
+ NULL, /* initializer */
+ create_extauth_dir_config, /* dir config creater */