diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-07-23T22·00+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-07-23T22·00+0200 |
commit | d3c61d83be254790101a67904b37e5439e98b4b2 (patch) | |
tree | 08e181dc24191d701170e1ba57a8e9674b67e789 | |
parent | 62ad3dfc4335e6b3c8acff5e7de9b8cf19c9cdbe (diff) |
Remove some dead code
-rw-r--r-- | src/libstore/worker-protocol.hh | 1 | ||||
-rw-r--r-- | src/nix-daemon/nix-daemon.cc | 9 |
2 files changed, 0 insertions, 10 deletions
diff --git a/src/libstore/worker-protocol.hh b/src/libstore/worker-protocol.hh index 9317f89c3763..c7d3a726ab4c 100644 --- a/src/libstore/worker-protocol.hh +++ b/src/libstore/worker-protocol.hh @@ -12,7 +12,6 @@ namespace nix { typedef enum { - wopQuit = 0, wopIsValidPath = 1, wopHasSubstitutes = 3, wopQueryPathHash = 4, diff --git a/src/nix-daemon/nix-daemon.cc b/src/nix-daemon/nix-daemon.cc index c38cf74d8824..2d6a3c4c416b 100644 --- a/src/nix-daemon/nix-daemon.cc +++ b/src/nix-daemon/nix-daemon.cc @@ -151,15 +151,6 @@ static void performOp(bool trusted, unsigned int clientVersion, { switch (op) { -#if 0 - case wopQuit: { - /* Close the database. */ - store.reset((StoreAPI *) 0); - writeInt(1, to); - break; - } -#endif - case wopIsValidPath: { /* 'readStorePath' could raise an error leading to the connection being closed. To be able to recover from an invalid path error, |