*** empty log message ***

This commit is contained in:
Jim Blandy 1992-07-17 21:04:37 +00:00
parent 279cc2b84c
commit c0acc3e1cd

View file

@ -97,7 +97,11 @@ main (argc, argv)
if (stat (server.sun_path, &statbfr) == -1)
{
perror ("stat");
if (errno == ENOENT)
fprintf (stderr,
"Can't find socket; have you started the server?\n");
else
perror ("stat");
exit (1);
}
if (statbfr.st_uid != geteuid())