From d9676aefd40f9f19839535d626a11a751be4bee5 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 8 Jun 2013 15:08:02 -0400 Subject: [PATCH] Task Server - The old 'version' message header is now the 'client' message header. --- src/Msg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Msg.cpp b/src/Msg.cpp index 3f34d6023..7cd45ff10 100644 --- a/src/Msg.cpp +++ b/src/Msg.cpp @@ -35,7 +35,7 @@ Msg::Msg () { // All messages are marked with the version number, so that the messages may // be properly evaluated in context. - _header["version"] = PACKAGE_STRING; + _header["client"] = PACKAGE_STRING; } ////////////////////////////////////////////////////////////////////////////////