Better error message for really clueless newbies.

diff --git a/scheduler/client.c b/scheduler/client.c
index 324aaf7..dbe1af3 100644
--- a/scheduler/client.c
+++ b/scheduler/client.c
@@ -426,9 +426,9 @@
         usleep( 50000 );
         if ((s = socket( AF_UNIX, SOCK_STREAM, 0 )) == -1) fatal_perror( "socket" );
         if (connect( s, (struct sockaddr *)&addr, slen ) == -1)
-            fatal_error( "'%s/%s' exists,\n"
+            fatal_error( "file '%s/%s' exists,\n"
                          "   but I cannot connect to it; maybe the server has crashed?\n"
-                         "   If this is the case, you should remove the socket file and try again.\n",
+                         "   If this is the case, you should remove this socket file and try again.\n",
                          serverdir, SOCKETNAME );
     }
     fcntl( s, F_SETFD, 1 ); /* set close on exec flag */