diff options
author | Damien Miller <djm@mindrot.org> | 2004-03-22 09:34:26 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2004-03-22 09:34:26 +1100 |
commit | 3df755e441bbc5b0084389fbb5e4c90509ac609b (patch) | |
tree | 322f99706b7f8325a6229ae76a7f0d2b2719eeb4 /ssh.c | |
parent | bfba3542614fb900384f957c908a34d125e81d78 (diff) | |
download | openssh-git-3df755e441bbc5b0084389fbb5e4c90509ac609b.tar.gz |
- markus@cvs.openbsd.org 2004/03/09 22:11:05
[ssh.c]
increase x11 cookie lifetime to 20 minutes; ok djm
Diffstat (limited to 'ssh.c')
-rw-r--r-- | ssh.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.206 2003/12/16 15:49:51 markus Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.207 2004/03/09 22:11:05 markus Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -777,7 +777,7 @@ x11_get_proto(char **_proto, char **_data) xauthdir); snprintf(cmd, sizeof(cmd), "%s -f %s generate %s " SSH_X11_PROTO - " untrusted timeout 120 2>" _PATH_DEVNULL, + " untrusted timeout 1200 2>" _PATH_DEVNULL, options.xauth_location, xauthfile, display); debug2("x11_get_proto: %s", cmd); if (system(cmd) == 0) |