about summary refs log tree commit diff
path: root/src/nix-daemon/nix-daemon.cc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-03-18T22·23+0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-03-18T22·23+0100
commit3fc056927c962ec9778e94528f2f9ae316afca4e (patch)
treec0337d0acbe1ba4326c83eb11d3901fc5d10cfdf /src/nix-daemon/nix-daemon.cc
parent51800e06dec91282b81fc41e56d1e9325849d2c2 (diff)
Fix tabs
Diffstat (limited to 'src/nix-daemon/nix-daemon.cc')
-rw-r--r--src/nix-daemon/nix-daemon.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/nix-daemon/nix-daemon.cc b/src/nix-daemon/nix-daemon.cc
index e678c9dfdb..2181ecfef6 100644
--- a/src/nix-daemon/nix-daemon.cc
+++ b/src/nix-daemon/nix-daemon.cc
@@ -294,14 +294,14 @@ static void performOp(bool trusted, unsigned int clientVersion,
 #endif
 
     case wopIsValidPath: {
-	/* 'readStorePath' could raise an error leading to the connection
-	   being closed.  To be able to recover from an invalid path error,
-	   call 'startWork' early, and do 'assertStorePath' afterwards so
-	   that the 'Error' exception handler doesn't close the
-	   connection.  */
+        /* 'readStorePath' could raise an error leading to the connection
+           being closed.  To be able to recover from an invalid path error,
+           call 'startWork' early, and do 'assertStorePath' afterwards so
+           that the 'Error' exception handler doesn't close the
+           connection.  */
         Path path = readString(from);
         startWork();
-	assertStorePath(path);
+        assertStorePath(path);
         bool result = store->isValidPath(path);
         stopWork();
         writeInt(result, to);