From bbc8c0a25cfe668f440c82fcef4886d6d9d7ba87 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Mon, 16 Sep 1996 00:09:45 +0000 Subject: [PATCH] (main): For now always use passive mode. That's the only thing that has been tested and not a lot of people are going to use non-passive anyways. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@752 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/kx/kx.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/appl/kx/kx.c b/appl/kx/kx.c index 08fc6a4e7..7a0b05eab 100644 --- a/appl/kx/kx.c +++ b/appl/kx/kx.c @@ -331,6 +331,10 @@ main(int argc, char **argv) disp = getenv("DISPLAY"); passivep = disp != NULL && (*disp == ':' || strncmp(disp, "unix", 4) == 0); + /* non passive mode has not been tested and I'm not sure it works + * at all, so better disable it. + */ + passivep = 1; signal (SIGCHLD, childhandler); return doit (argv[1], passivep); }