summaryrefslogtreecommitdiffstats
path: root/xlators/protocol/server/src/server-protocol.c
diff options
context:
space:
mode:
Diffstat (limited to 'xlators/protocol/server/src/server-protocol.c')
-rw-r--r--xlators/protocol/server/src/server-protocol.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/xlators/protocol/server/src/server-protocol.c b/xlators/protocol/server/src/server-protocol.c
index ee79893ff..47a3b4b47 100644
--- a/xlators/protocol/server/src/server-protocol.c
+++ b/xlators/protocol/server/src/server-protocol.c
@@ -6955,7 +6955,7 @@ mop_setvolume (call_frame_t *frame, xlator_t *bound_xl,
if (trans->xl_private != conn)
trans->xl_private = conn;
- ret = dict_get_str (params, "version", &version);
+ ret = dict_get_str (params, "protocol-version", &version);
if (ret < 0) {
ret = dict_set_str (reply, "ERROR",
"No version number specified");
@@ -6968,11 +6968,11 @@ mop_setvolume (call_frame_t *frame, xlator_t *bound_xl,
goto fail;
}
- ret = strcmp (version, PACKAGE_VERSION);
+ ret = strcmp (version, GF_PROTOCOL_VERSION);
if (ret != 0) {
asprintf (&msg,
- "Version mismatch: client(%s) Vs server (%s)",
- version, PACKAGE_VERSION);
+ "protocol version mismatch: client(%s) - server(%s)",
+ version, GF_PROTOCOL_VERSION);
ret = dict_set_dynstr (reply, "ERROR", msg);
if (ret < 0)
gf_log (trans->xl->name, GF_LOG_DEBUG,