diff options
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-store.c')
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-store.c | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-store.c b/xlators/mgmt/glusterd/src/glusterd-store.c index 57809f400b8..36e7d6508ef 100644 --- a/xlators/mgmt/glusterd/src/glusterd-store.c +++ b/xlators/mgmt/glusterd/src/glusterd-store.c @@ -1,5 +1,5 @@  /* -   Copyright (c) 2007-2012 Red Hat, Inc. <http://www.redhat.com> +   Copyright (c) 2007-2013 Red Hat, Inc. <http://www.redhat.com>     This file is part of GlusterFS.     This file is licensed to you under your choice of the GNU Lesser @@ -1513,7 +1513,7 @@ glusterd_store_retrieve_bricks (glusterd_volinfo_t *volinfo)                                      strlen (GLUSTERD_STORE_KEY_BRICK_PORT))) {                                  gf_string2int (value, &brickinfo->port); -                                if (brickinfo->port < GF_IANA_PRIV_PORTS_START){ +                                if (brickinfo->port < priv->base_port) {                                          /* This is required to adhere to the                                             IANA standards */                                          brickinfo->port = 0; @@ -1529,8 +1529,7 @@ glusterd_store_retrieve_bricks (glusterd_volinfo_t *volinfo)                                      strlen (GLUSTERD_STORE_KEY_BRICK_RDMA_PORT))) {                                  gf_string2int (value, &brickinfo->rdma_port); -                                if (brickinfo->rdma_port < -                                    GF_IANA_PRIV_PORTS_START){ +                                if (brickinfo->rdma_port < priv->base_port) {                                          /* This is required to adhere to the                                             IANA standards */                                          brickinfo->rdma_port = 0;  | 
