]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Improve a message about SessionExpiryUpdateInterval values
authorChristophe Jaillet <jailletc36@apache.org>
Sat, 14 Nov 2020 07:53:02 +0000 (07:53 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sat, 14 Nov 2020 07:53:02 +0000 (07:53 +0000)
PR 64904

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1883414 13f79535-47bb-0310-9956-ffa450edef68

modules/session/mod_session.c

index e448ffcb5ec6b05abee61945e16e9e5135ee5b6e..a2b4a3e608b76c8f6a923581351b60e361f8c598 100644 (file)
@@ -657,7 +657,7 @@ static const char *
 
     conf->expiry_update_time = atoi(arg);
     if (conf->expiry_update_time < 0) {
-        return "SessionExpiryUpdateInterval must be positive or nul";
+        return "SessionExpiryUpdateInterval must be zero (disable) or a positive value";
     }
     conf->expiry_update_time = apr_time_from_sec(conf->expiry_update_time);
     conf->expiry_update_set = 1;