From 59afc1a15cfb90c333aa7423e46be32cc0635b12 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 13 Aug 2007 11:15:13 +0000 Subject: [PATCH] * Backwards compatibility. --- src/libstore/worker-protocol.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libstore/worker-protocol.hh b/src/libstore/worker-protocol.hh index 3fdfa1807b..56d03af55b 100644 --- a/src/libstore/worker-protocol.hh +++ b/src/libstore/worker-protocol.hh @@ -10,9 +10,9 @@ namespace nix { typedef enum { - wopQuit, + wopQuit = 0, wopIsValidPath, - wopHasSubstitutes, + wopHasSubstitutes = 3, wopQueryPathHash, wopQueryReferences, wopQueryReferrers,