summaryrefslogtreecommitdiffstats
path: root/rpc/rpc-lib/src/rpc-transport.c
diff options
context:
space:
mode:
authorRaghavendra G <rgowdapp@redhat.com>2015-07-02 05:22:20 -0700
committerRaghavendra G <rgowdapp@redhat.com>2015-07-02 08:46:13 -0700
commit05f466f6337c56a95fcd090f0f3d286c611cc92b (patch)
treef50173918653433602c725cc3542c5b8b5263850 /rpc/rpc-lib/src/rpc-transport.c
parent04350600eb6255e23e087a3a1d3d15431efc7c6c (diff)
Revert "rpc: By default set allow-insecure, bind-insecure to on"
This reverts commit 243a5b429f225acb8e7132264fe0a0835ff013d5. This patch introduced a regression where client no longer binds to privileged port. This is causing lots of regressions. Hence reverting this patch for now and will be resent after suitable modifications. Change-Id: I302252fd3832b0a5a03b04e30cfa0def37597404 Reviewed-on: http://review.gluster.org/11508 Reviewed-by: Raghavendra G <rgowdapp@redhat.com> Tested-by: Raghavendra G <rgowdapp@redhat.com>
Diffstat (limited to 'rpc/rpc-lib/src/rpc-transport.c')
-rw-r--r--rpc/rpc-lib/src/rpc-transport.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/rpc/rpc-lib/src/rpc-transport.c b/rpc/rpc-lib/src/rpc-transport.c
index 0a791abfddd..23fbf37360d 100644
--- a/rpc/rpc-lib/src/rpc-transport.c
+++ b/rpc/rpc-lib/src/rpc-transport.c
@@ -267,8 +267,7 @@ rpc_transport_load (glusterfs_ctx_t *ctx, dict_t *options, char *trans_name)
else
trans->bind_insecure = 0;
} else {
- /* By default allow bind insecure */
- trans->bind_insecure = 1;
+ trans->bind_insecure = 0;
}
ret = dict_get_str (options, "transport-type", &type);