summaryrefslogtreecommitdiffstats
path: root/winsup/cygserver/client.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-08-25 18:22:07 +0000
committerChristopher Faylor <me@cgf.cx>2003-08-25 18:22:07 +0000
commit29c1c50828233ceef69bd54b80104b45ac9a57fb (patch)
tree86fa8a02e5d3820a11f0aa442473a31904dfae9b /winsup/cygserver/client.cc
parent4392d36cbb8ba8dae24eca82c445d807497d69ff (diff)
downloadcygnal-29c1c50828233ceef69bd54b80104b45ac9a57fb.tar.gz
cygnal-29c1c50828233ceef69bd54b80104b45ac9a57fb.tar.bz2
cygnal-29c1c50828233ceef69bd54b80104b45ac9a57fb.zip
* Makefile.in: Build libcygserver.a.
* client.cc: Rename allow_daemon to allow_server.
Diffstat (limited to 'winsup/cygserver/client.cc')
-rw-r--r--winsup/cygserver/client.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/winsup/cygserver/client.cc b/winsup/cygserver/client.cc
index f6683182d..eedc6769b 100644
--- a/winsup/cygserver/client.cc
+++ b/winsup/cygserver/client.cc
@@ -30,10 +30,7 @@ details. */
int cygserver_running = CYGSERVER_UNKNOWN; // Nb: inherited by children.
-/* On by default during development. For release, we probably want off
- * by default.
- */
-bool allow_daemon = true; // Nb: inherited by children.
+bool allow_server = false; // Nb: inherited by children.
client_request_get_version::client_request_get_version ()
: client_request (CYGSERVER_REQUEST_GET_VERSION, &version, sizeof (version))
@@ -509,7 +506,7 @@ check_cygserver_available ()
void
cygserver_init ()
{
- if (!allow_daemon)
+ if (!allow_server)
{
syscall_printf ("cygserver use disabled in client");
cygserver_running = CYGSERVER_UNAVAIL;