1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-26 10:49:33 +00:00

*** 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())