about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/nix-worker/main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix-worker/main.cc b/src/nix-worker/main.cc
index 4397697bab2f..a4372b4a56c2 100644
--- a/src/nix-worker/main.cc
+++ b/src/nix-worker/main.cc
@@ -365,9 +365,9 @@ static void processConnection()
     try {
 
         /* Prevent users from doing something very dangerous. */
-        if (setuidMode && geteuid() == 0 &&
+        if (geteuid() == 0 &&
             querySetting("build-users", Strings()).size() == 0)
-            throw Error("if you run `nix-worker' setuid root, then you MUST set `build-users'!");
+            throw Error("if you run `nix-worker' as root, then you MUST set `build-users'!");
 
         /* Open the store. */
         store = boost::shared_ptr<StoreAPI>(new LocalStore(true));