You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2017/05/17 21:08:07 UTC

[trafficserver] 04/04: Fix version and virtualhost config cache sync.

This is an automated email from the ASF dual-hosted git repository.

zwoop pushed a commit to branch 7.1.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

commit d95ce85f7424ab429d5e0b533fecc65674ea658c
Author: Gancho Tenev <ga...@apache.com>
AuthorDate: Mon May 15 10:25:34 2017 -0700

    Fix version and virtualhost config cache sync.
    
    (cherry picked from commit 13804cc4d863cabefdbf2ef4bb5d15d13d6339e8)
---
 plugins/s3_auth/s3_auth.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/plugins/s3_auth/s3_auth.cc b/plugins/s3_auth/s3_auth.cc
index 2d6eb13..81eb80a 100644
--- a/plugins/s3_auth/s3_auth.cc
+++ b/plugins/s3_auth/s3_auth.cc
@@ -130,10 +130,10 @@ public:
       _keyid_len = src->_keyid_len;
     }
 
-    if (_version_modified) {
+    if (src->_version_modified) {
       _version = src->_version;
     }
-    if (_virt_host_modified) {
+    if (src->_virt_host_modified) {
       _virt_host = src->_virt_host;
     }
   }

-- 
To stop receiving notification emails like this one, please contact
"commits@trafficserver.apache.org" <co...@trafficserver.apache.org>.