diff options
author | Pranith K <pranithk@gluster.com> | 2011-03-26 11:41:01 +0000 |
---|---|---|
committer | Vijay Bellur <vijay@dev.gluster.com> | 2011-03-29 05:32:40 -0700 |
commit | f86edd4387fbd78b183bde022bf05f9a0baf8f9b (patch) | |
tree | fe230be0c6698b9d1f798d1ec0bdb17664693a7a /rpc/rpc-transport | |
parent | ad278612cd464503e421211a9e78afc7e43f43c2 (diff) |
rpc: Don't warn on failure to bind to privileged port
Signed-off-by: Pranith Kumar K <pranithk@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 2582 (allow option to accept messages from insecure ports)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2582
Diffstat (limited to 'rpc/rpc-transport')
-rw-r--r-- | rpc/rpc-transport/socket/src/name.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/rpc-transport/socket/src/name.c b/rpc/rpc-transport/socket/src/name.c index 8be29163e23..0667e4dbba0 100644 --- a/rpc/rpc-transport/socket/src/name.c +++ b/rpc/rpc-transport/socket/src/name.c @@ -438,7 +438,7 @@ client_bind (rpc_transport_t *this, ret = af_inet_bind_to_port_lt_ceiling (sock, sockaddr, *sockaddr_len, CLIENT_PORT_CEILING); if (ret == -1) { - gf_log (this->name, GF_LOG_WARNING, + gf_log (this->name, GF_LOG_DEBUG, "cannot bind inet socket (%d) to port less than %d (%s)", sock, CLIENT_PORT_CEILING, strerror (errno)); ret = 0; |