From 2703ec73c9d338d55387ec3f787d0a7f30289cff Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 14 May 2003 13:49:02 +0000 Subject: [PATCH] Set permissions to 0777 for unix file socket --- comstack/unix.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/comstack/unix.c b/comstack/unix.c index e5cd9e5..22087ea 100644 --- a/comstack/unix.c +++ b/comstack/unix.c @@ -2,7 +2,7 @@ * Copyright (c) 1995-2003, Index Data * See the file LICENSE for details. * - * $Id: unix.c,v 1.11 2003-03-03 19:57:35 adam Exp $ + * $Id: unix.c,v 1.12 2003-05-14 13:49:02 adam Exp $ * UNIX socket COMSTACK. By Morten Bøgeskov. */ #ifndef WIN32 @@ -292,6 +292,7 @@ static int unix_bind(COMSTACK h, void *address, int mode) h->cerrno = CSYSERR; return -1; } + chmod(path, 0777); if (mode == CS_SERVER && listen(h->iofile, 3) < 0) { h->cerrno = CSYSERR; -- 1.7.10.4