diff options
author | Robert Hensing <robert@roberthensing.nl> | 2020-09-17 19:27:11 +0200 |
---|---|---|
committer | Robert Hensing <robert@roberthensing.nl> | 2020-09-21 07:54:05 +0200 |
commit | e34fe47d0ce19fc7657970fb0e610bffbc3e43f0 (patch) | |
tree | e66ebc5318ad34a1eb3ece880271d4b33a505d8d /src/libstore/worker-protocol.hh | |
parent | 14b30b3f3d5af75c210a15cb128e67c0eff66149 (diff) |
Overhaul wopAddToStore
Diffstat (limited to 'src/libstore/worker-protocol.hh')
-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 13cf8d4ab..21e05d91c 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 0x118 +#define PROTOCOL_VERSION 0x119 #define GET_PROTOCOL_MAJOR(x) ((x) & 0xff00) #define GET_PROTOCOL_MINOR(x) ((x) & 0x00ff) |