aboutsummaryrefslogtreecommitdiff
path: root/src/nix-worker
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2008-12-03 16:10:17 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2008-12-03 16:10:17 +0000
commitff762fb499be220ccd680f3bf68dca44a902a5ff (patch)
tree02f738ec60517e3eadd5b0a2bc2fe5c19c3d954c /src/nix-worker
parent1307b222239da8e503d22ad9316789e30b4e2431 (diff)
* Pass HashType values instead of strings.
Diffstat (limited to 'src/nix-worker')
-rw-r--r--src/nix-worker/nix-worker.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-worker/nix-worker.cc b/src/nix-worker/nix-worker.cc
index e4fe94926..c956f839e 100644
--- a/src/nix-worker/nix-worker.cc
+++ b/src/nix-worker/nix-worker.cc
@@ -292,7 +292,7 @@ static void performOp(unsigned int clientVersion,
string baseName = readString(from);
readInt(from); /* obsolete; was `fixed' flag */
bool recursive = readInt(from) == 1;
- string hashAlgo = readString(from);
+ HashType hashAlgo = parseHashType(readString(from));
Path tmp = createTempDir();
AutoDelete delTmp(tmp);