change perms on eeze scanner socket to be readable by all

SVN revision: 71951
This commit is contained in:
Mike Blumenkrantz 2012-06-11 14:22:01 +00:00
parent 5c75633883
commit 9cff510760
1 changed files with 1 additions and 1 deletions

View File

@ -460,7 +460,7 @@ main(void)
svr = ecore_con_server_add(ECORE_CON_LOCAL_SYSTEM, buf, 0, NULL);
EINA_SAFETY_ON_NULL_GOTO(svr, error);
if (chmod(buf2, S_IROTH))
if (chmod(buf2, S_IRWXU | S_IRWXG | S_IRWXO))
{
ERR("Could not chmod socket (%s)! \"%s\"", buf, strerror(errno));
goto error;