You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2013/12/15 11:30:35 UTC

svn commit: r1551012 - /httpd/httpd/trunk/modules/session/mod_session_crypto.c

Author: jailletc36
Date: Sun Dec 15 10:30:35 2013
New Revision: 1551012

URL: http://svn.apache.org/r1551012
Log:
Remove redundant check (already performed the line before)

Modified:
    httpd/httpd/trunk/modules/session/mod_session_crypto.c

Modified: httpd/httpd/trunk/modules/session/mod_session_crypto.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/session/mod_session_crypto.c?rev=1551012&r1=1551011&r2=1551012&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/session/mod_session_crypto.c (original)
+++ httpd/httpd/trunk/modules/session/mod_session_crypto.c Sun Dec 15 10:30:35 2013
@@ -586,7 +586,7 @@ static const char *set_crypto_passphrase
     while (!(ap_cfg_getline(buffer, sizeof(buffer), file))) {
         args = buffer;
         while (*(arg = ap_getword_conf(cmd->pool, &args)) != '\0') {
-            if (*arg == '#' || *arg == 0) {
+            if (*arg == '#') {
                 break;
             }
             set_crypto_passphrase(cmd, config, arg);