diff options
| author | Atin Mukherjee <amukherj@redhat.com> | 2016-07-18 12:23:29 +0530 | 
|---|---|---|
| committer | Jeff Darcy <jdarcy@redhat.com> | 2016-07-18 03:58:30 -0700 | 
| commit | 939184c6709db1391d38c892e098c20519d746cc (patch) | |
| tree | 59512f694403495443a0902f7376ba9da5f71512 /xlators/mgmt/glusterd/src/glusterd-utils.c | |
| parent | 8cbee639520bf4631ce658e2da9b4bc3010d2eaa (diff) | |
glusterd: fix compilation warning
glusterd-utils.c: In function 'glusterd_handle_replicate_brick_ops':
glusterd-utils.c:11402:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
         if (dict_get_str (THIS->options, "transport.socket.bind-address",
         ^~
glusterd-utils.c:11406:17: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
                 snprintf (logfile, sizeof (logfile),
Solution : indentation does the magic :)
Change-Id: I887fcba69ba1e952cc635d939e636d69e227f8b8
Signed-off-by: Atin Mukherjee <amukherj@redhat.com>
Reviewed-on: http://review.gluster.org/14937
Smoke: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Anuradha Talur <atalur@redhat.com>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-utils.c')
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-utils.c | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-utils.c b/xlators/mgmt/glusterd/src/glusterd-utils.c index 6461ffb2cdb..0cca218488b 100644 --- a/xlators/mgmt/glusterd/src/glusterd-utils.c +++ b/xlators/mgmt/glusterd/src/glusterd-utils.c @@ -11399,9 +11399,10 @@ glusterd_handle_replicate_brick_ops (glusterd_volinfo_t *volinfo,          switch (op) {          case GD_OP_REPLACE_BRICK: -        if (dict_get_str (THIS->options, "transport.socket.bind-address", -                          &volfileserver) != 0) -                volfileserver = "localhost"; +                if (dict_get_str (THIS->options, +                                  "transport.socket.bind-address", +                                  &volfileserver) != 0) +                        volfileserver = "localhost";                  snprintf (logfile, sizeof (logfile),                            DEFAULT_LOG_FILE_DIRECTORY"/%s-replace-brick-mount.log",  | 
