diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-08-28T16·54+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-08-28T16·54+0200 |
commit | cfc813239128fc69a9228b39b5c0abb7e7a67b11 (patch) | |
tree | b6ca354a72f9ae7fc09695f1f423e252762bdfa6 /src/libstore | |
parent | fe34b91289793178323b4924ee63c9e3ed636d11 (diff) |
Don't send progress messages to older clients
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/worker-protocol.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/worker-protocol.hh b/src/libstore/worker-protocol.hh index 9daeb46add1a..996e1d25355f 100644 --- a/src/libstore/worker-protocol.hh +++ b/src/libstore/worker-protocol.hh @@ -6,7 +6,7 @@ namespace nix { #define WORKER_MAGIC_1 0x6e697863 #define WORKER_MAGIC_2 0x6478696f -#define PROTOCOL_VERSION 0x113 +#define PROTOCOL_VERSION 0x114 #define GET_PROTOCOL_MAJOR(x) ((x) & 0xff00) #define GET_PROTOCOL_MINOR(x) ((x) & 0x00ff) |