summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-11-24 13:10:09 +1100
committerDamien Miller <djm@mindrot.org>2003-11-24 13:10:09 +1100
commite0113ccc08725142ca263dd61734bc93e1a3d39b (patch)
tree4ed61fc814aaab9fece8dfe2cbad8cf0c41877ac /ssh.c
parenta4b33dfb6dff6bebb8f08f72eabaa796aa8bb7d4 (diff)
- dtucker@cvs.openbsd.org 2003/11/24 00:16:35
[ssh.1 ssh.c] Make ssh -k mean GSSAPIDelegateCredentials=no. Suggestion & ok markus@
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh.c b/ssh.c
index e8639f66b..d29ca37a9 100644
--- a/ssh.c
+++ b/ssh.c
@@ -40,7 +40,7 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: ssh.c,v 1.203 2003/11/21 11:57:03 djm Exp $"); 43RCSID("$OpenBSD: ssh.c,v 1.204 2003/11/24 00:16:35 dtucker Exp $");
44 44
45#include <openssl/evp.h> 45#include <openssl/evp.h>
46#include <openssl/err.h> 46#include <openssl/err.h>
@@ -309,7 +309,7 @@ again:
309 options.forward_agent = 1; 309 options.forward_agent = 1;
310 break; 310 break;
311 case 'k': 311 case 'k':
312 /* ignored for backward compatibility */ 312 options.gss_deleg_creds = 0;
313 break; 313 break;
314 case 'i': 314 case 'i':
315 if (stat(optarg, &st) < 0) { 315 if (stat(optarg, &st) < 0) {