diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-12-01T13·51+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-12-01T13·51+0000 |
commit | 23c38a04ccba4469b9aa98167532c236beeee0a0 (patch) | |
tree | 49e2bb12c15acf7a9e54efe7a3e283afcc1c870b /src/nix-worker | |
parent | 24f863d86b0316c736fe9e89998cd442b8a400dd (diff) |
* Slight improvement.
Diffstat (limited to 'src/nix-worker')
-rw-r--r-- | src/nix-worker/nix-worker.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nix-worker/nix-worker.cc b/src/nix-worker/nix-worker.cc index d74b82df4c23..8950f73ef25f 100644 --- a/src/nix-worker/nix-worker.cc +++ b/src/nix-worker/nix-worker.cc @@ -364,12 +364,11 @@ static void performOp(unsigned int clientVersion, addToStoreFromDump(). */ ParseSink sink; /* null sink; just parse the NAR */ parseDump(sink, savedNAR); - } else { + } else parseDump(savedRegular, from); - if (!savedRegular.regular) throw Error("regular file expected"); - } startWork(); + if (!savedRegular.regular) throw Error("regular file expected"); Path path = dynamic_cast<LocalStore *>(store.get()) ->addToStoreFromDump(recursive ? savedNAR.s : savedRegular.s, baseName, recursive, hashAlgo); stopWork(); |