mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-11 16:40:45 -08:00
*** empty log message ***
This commit is contained in:
parent
279cc2b84c
commit
c0acc3e1cd
1 changed files with 5 additions and 1 deletions
|
|
@ -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())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue