Change ErrorOutFile to /dev/null by default
Signed-off-by: Masanori Ogino <mogino@acm.org>
This commit is contained in:
parent
e51368782f
commit
18826884a6
1 changed files with 16 additions and 1 deletions
|
|
@ -33,7 +33,22 @@
|
||||||
* $SonyDate: 1997/01/23 11:20:55 $
|
* $SonyDate: 1997/01/23 11:20:55 $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define ErrorOutFile "/dev/console"
|
/*
|
||||||
|
* Change ErrotOutFile variable.
|
||||||
|
* Because suppress a error when sj3serv start up, change to "/dev/stderr".
|
||||||
|
* This error is "Cannot Open "/dev/console".".
|
||||||
|
* Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10
|
||||||
|
*
|
||||||
|
* Change ErrotOutFile variable.
|
||||||
|
* This default value is "/dev/null" in document.
|
||||||
|
* Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/11
|
||||||
|
*/
|
||||||
|
#if !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(__OpenBSD__)
|
||||||
|
#define ErrorOutFile "/dev/console"
|
||||||
|
#else
|
||||||
|
/* #define ErrorOutFile "/dev/stderr" */ /* for test */
|
||||||
|
#define ErrorOutFile "/dev/null"
|
||||||
|
#endif
|
||||||
|
|
||||||
#define SocketName "/tmp/sj3sock"
|
#define SocketName "/tmp/sj3sock"
|
||||||
#define LockFile "/tmp/SJ3SERV.EXIST"
|
#define LockFile "/tmp/SJ3SERV.EXIST"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue