*** 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
Reference in a new issue