about summary refs log tree commit diff
path: root/src/nix-daemon
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2016-09-12T12·09-0400
committerShea Levy <shea@shealevy.com>2016-09-12T12·09-0400
commitb99c6e0e2959e90ddda14d8b318e4c7b1a508674 (patch)
tree20d2aca41f6ee943dcfc783aee6cf9dd98e270a5 /src/nix-daemon
parent196815f70014d9e7c3a44b66d4c1eb35aa56a282 (diff)
nix-daemon: Fix error message
Diffstat (limited to 'src/nix-daemon')
-rw-r--r--src/nix-daemon/nix-daemon.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-daemon/nix-daemon.cc b/src/nix-daemon/nix-daemon.cc
index d37bcb3e7e7d..0fe005378a6c 100644
--- a/src/nix-daemon/nix-daemon.cc
+++ b/src/nix-daemon/nix-daemon.cc
@@ -961,7 +961,7 @@ int main(int argc, char * * argv)
 
                 auto socketDir = dirOf(socketPath);
                 if (chdir(socketDir.c_str()) == -1)
-                    throw SysError(format("changing to socket directory %1%") % socketDir);
+                    throw SysError(format("changing to socket directory ‘%1%’") % socketDir);
 
                 auto socketName = baseNameOf(socketPath);
                 auto addr = sockaddr_un{};