You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ti...@apache.org on 2016/10/14 03:10:45 UTC

mesos git commit: Fixed handling of deprecated SSL_ prefix.

Repository: mesos
Updated Branches:
  refs/heads/master 22d3f56ce -> 3b6f1458b


Fixed handling of deprecated SSL_ prefix.

Review: https://reviews.apache.org/r/52852/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/3b6f1458
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/3b6f1458
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/3b6f1458

Branch: refs/heads/master
Commit: 3b6f1458b3d58b801cc73bcbde75dfb340c1a7e1
Parents: 22d3f56
Author: Till Toenshoff <to...@me.com>
Authored: Fri Oct 14 04:45:09 2016 +0200
Committer: Till Toenshoff <to...@me.com>
Committed: Fri Oct 14 04:45:09 2016 +0200

----------------------------------------------------------------------
 3rdparty/libprocess/src/openssl.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/3b6f1458/3rdparty/libprocess/src/openssl.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/src/openssl.cpp b/3rdparty/libprocess/src/openssl.cpp
index 5ddb10d..8e4e049 100644
--- a/3rdparty/libprocess/src/openssl.cpp
+++ b/3rdparty/libprocess/src/openssl.cpp
@@ -312,7 +312,7 @@ void reinitialize()
                    << "LIBPROCESS_SSL_" << key;
     }
   }
-  environments.insert(environment_ssl.begin(), environment_ssl.begin());
+  environments.insert(environment_ssl.begin(), environment_ssl.end());
 
   Try<flags::Warnings> load = ssl_flags->load(environments);
   if (load.isError()) {