summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rpc/rpc-transport/socket/src/socket.c2
-rwxr-xr-xtests/features/ssl-authz.t2
2 files changed, 2 insertions, 2 deletions
diff --git a/rpc/rpc-transport/socket/src/socket.c b/rpc/rpc-transport/socket/src/socket.c
index c7cc37bf950..cec0825f7d4 100644
--- a/rpc/rpc-transport/socket/src/socket.c
+++ b/rpc/rpc-transport/socket/src/socket.c
@@ -54,7 +54,7 @@
# define DEFAULT_ETC_SSL "/etc/openssl"
# endif
# ifdef GF_DARWIN_HOST_OS
-# define DEFAULT_ETC_SSL "/opt/local/etc/openssl"
+# define DEFAULT_ETC_SSL "/usr/local/etc/openssl"
# endif
# if !defined(DEFAULT_ETC_SSL)
# define DEFAULT_ETC_SSL "/etc/ssl"
diff --git a/tests/features/ssl-authz.t b/tests/features/ssl-authz.t
index 4aabb1d14ec..72db389f5cf 100755
--- a/tests/features/ssl-authz.t
+++ b/tests/features/ssl-authz.t
@@ -6,7 +6,7 @@
ping_file () {
echo hello > $1 2> /dev/null
}
-for d in /etc/ssl /etc/openssl /opt/local/etc/openssl ; do
+for d in /etc/ssl /etc/openssl /usr/local/etc/openssl ; do
if test -d $d ; then
SSL_BASE=$d
break