diff options
author | Darren Tucker <dtucker@zip.com.au> | 2010-01-08 16:54:59 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2010-01-08 16:54:59 +1100 |
commit | f1de4e5228ad86b191c3297bf6c528753587be5e (patch) | |
tree | a8a53a07238f9993ef7be988b06e98aed3682f7b /ssh.c | |
parent | e730118bf41c70bd519e595a7dda39df551852eb (diff) |
- andreas@cvs.openbsd.org 2009/10/24 11:23:42
[ssh.c]
Request roaming to be enabled if UseRoaming is true and the server
supports it.
ok markus@
Diffstat (limited to 'ssh.c')
-rw-r--r-- | ssh.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssh.c,v 1.326 2009/07/02 02:11:47 dtucker Exp $ */ | 1 | /* $OpenBSD: ssh.c,v 1.327 2009/10/24 11:23:42 andreas Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -100,6 +100,7 @@ | |||
100 | #include "match.h" | 100 | #include "match.h" |
101 | #include "msg.h" | 101 | #include "msg.h" |
102 | #include "uidswap.h" | 102 | #include "uidswap.h" |
103 | #include "roaming.h" | ||
103 | #include "version.h" | 104 | #include "version.h" |
104 | 105 | ||
105 | #ifdef SMARTCARD | 106 | #ifdef SMARTCARD |
@@ -1222,6 +1223,9 @@ ssh_session2(void) | |||
1222 | fatal("daemon() failed: %.200s", strerror(errno)); | 1223 | fatal("daemon() failed: %.200s", strerror(errno)); |
1223 | } | 1224 | } |
1224 | 1225 | ||
1226 | if (options.use_roaming) | ||
1227 | request_roaming(); | ||
1228 | |||
1225 | return client_loop(tty_flag, tty_flag ? | 1229 | return client_loop(tty_flag, tty_flag ? |
1226 | options.escape_char : SSH_ESCAPECHAR_NONE, id); | 1230 | options.escape_char : SSH_ESCAPECHAR_NONE, id); |
1227 | } | 1231 | } |