about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/libstore/remote-store.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc
index 483794bc816d..da63765cdcf7 100644
--- a/src/libstore/remote-store.cc
+++ b/src/libstore/remote-store.cc
@@ -88,12 +88,6 @@ void RemoteStore::forkSlave()
             close(fdSocket);
             close(fdChild);
 
-            int fdDebug = open("/tmp/worker-log", O_WRONLY | O_CREAT | O_TRUNC, 0644);
-            assert(fdDebug != -1);
-            if (dup2(fdDebug, STDERR_FILENO) == -1)
-                throw SysError("dupping stderr");
-            close(fdDebug);
-            
             execlp(worker.c_str(), worker.c_str(), "--slave",
                 /* hacky - must be at the end */
                 verbosityArg == "-" ? NULL : verbosityArg.c_str(),