about summary refs log tree commit diff
path: root/src/libstore/worker-protocol.hh
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-04-20T13·28+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-04-20T13·28+0200
commitddea253ff8312bf1d2559999c4dd8d9cc3e5b240 (patch)
tree5b2a0e8bdbaddcbab0b2f8124983d52577128d63 /src/libstore/worker-protocol.hh
parentc0c4ddcd9c19a29e3dfd26160929f3278150547f (diff)
RemoteStore: Propagate InvalidPath exceptions from the daemon
Diffstat (limited to 'src/libstore/worker-protocol.hh')
-rw-r--r--src/libstore/worker-protocol.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/worker-protocol.hh b/src/libstore/worker-protocol.hh
index d62244d18c12..d133328d1e76 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 0x110
+#define PROTOCOL_VERSION 0x111
 #define GET_PROTOCOL_MAJOR(x) ((x) & 0xff00)
 #define GET_PROTOCOL_MINOR(x) ((x) & 0x00ff)