diff options
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-store.c | 2 | ||||
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd.c | 2 | 
2 files changed, 3 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-store.c b/xlators/mgmt/glusterd/src/glusterd-store.c index 68d621571e0..db26bbf2c10 100644 --- a/xlators/mgmt/glusterd/src/glusterd-store.c +++ b/xlators/mgmt/glusterd/src/glusterd-store.c @@ -1444,7 +1444,7 @@ glusterd_retrieve_uuid ()                  goto out;          } -        uuid_parse (uuid_str, MY_UUID); +        uuid_parse (uuid_str, priv->uuid);  out:          if (uuid_str) diff --git a/xlators/mgmt/glusterd/src/glusterd.c b/xlators/mgmt/glusterd/src/glusterd.c index 766c926b802..0dfffbbed39 100644 --- a/xlators/mgmt/glusterd/src/glusterd.c +++ b/xlators/mgmt/glusterd/src/glusterd.c @@ -987,6 +987,8 @@ init (xlator_t *this)          }          INIT_LIST_HEAD (&conf->mount_specs); + +        ret = 0;          dict_foreach (this->options, _install_mount_spec, &ret);          if (ret)                  goto out;  | 
