summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorolavmrk <olavmrk@a716ebb1-153a-0410-b759-cfb97c6a1b53>2011-02-18 14:03:19 +0000
committerolavmrk <olavmrk@a716ebb1-153a-0410-b759-cfb97c6a1b53>2011-02-18 14:03:19 +0000
commit0a03c79d868bf4e30d6052aeeff1789644fe09b8 (patch)
tree3ec8fa445e1a9f8121514e7c4ea604b065817351
parent227d1f80c86e9b1a9da097ea50e2699ddc8be3f2 (diff)
downloadmod_auth_mellon-0a03c79d868bf4e30d6052aeeff1789644fe09b8.tar.gz
mod_auth_mellon-0a03c79d868bf4e30d6052aeeff1789644fe09b8.tar.xz
mod_auth_mellon-0a03c79d868bf4e30d6052aeeff1789644fe09b8.zip
Fix references to MellonPostDirectory in README and in a comment.
git-svn-id: https://modmellon.googlecode.com/svn/trunk@111 a716ebb1-153a-0410-b759-cfb97c6a1b53
-rw-r--r--README11
-rw-r--r--auth_mellon_util.c4
2 files changed, 8 insertions, 7 deletions
diff --git a/README b/README
index 925946f..86da346 100644
--- a/README
+++ b/README
@@ -104,11 +104,12 @@ MellonCacheSize 100
# Default: MellonLockFile "/tmp/mellonLock"
MellonLockFile "/tmp/mellonLock"
-# MellonPostDir is the full path of a directory where POST requests are
-# saved during authentication. This directory must be owned by the Apache
-# user and be mode 700. We will attempt to create it if it does not exist.
-# Default: MellonPostDir "/var/tmp/mellonpost"
-MellonPostDir "/var/tmp/mellonpost"
+# MellonPostDirectory is the full path of a directory where POST requests
+# are saved during authentication. This directory must be owned by the
+# Apache user and be mode 700. We will attempt to create it if it does not
+# exist.
+# Default: MellonPostDirectory "/var/tmp/mellonpost"
+MellonPostDirectory "/var/tmp/mellonpost"
# MellonPostTTL is the delay in seconds before a saved POST request can
# be flushed.
diff --git a/auth_mellon_util.c b/auth_mellon_util.c
index a0949bd..8f5bf9d 100644
--- a/auth_mellon_util.c
+++ b/auth_mellon_util.c
@@ -678,8 +678,8 @@ static int am_postdir_mkdir(request_rec *r)
}
/*
- * Purge outdated saved POST requests. If the MellonPostDir directory
- * does not exist, create it first.
+ * Purge outdated saved POST requests. If the MellonPostDirectory
+ * directory does not exist, create it first.
*
* Parameters:
* request_rec *r The current request