summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--ssh-add.c7
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 3e93ed2f6..21afdb5c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,9 @@
3 - djm@cvs.openbsd.org 2011/10/18 05:15:28 3 - djm@cvs.openbsd.org 2011/10/18 05:15:28
4 [ssh.c] 4 [ssh.c]
5 ssh(1): skip attempting to create ~/.ssh when -F is passed; ok markus@ 5 ssh(1): skip attempting to create ~/.ssh when -F is passed; ok markus@
6 - djm@cvs.openbsd.org 2011/10/18 23:37:42
7 [ssh-add.c]
8 add -k to usage(); reminded by jmc@
6 9
720111025 1020111025
8 - (dtucker) [contrib/cygwin/Makefile] Continue if installing a doc file 11 - (dtucker) [contrib/cygwin/Makefile] Continue if installing a doc file
diff --git a/ssh-add.c b/ssh-add.c
index ea7619e6a..738644d27 100644
--- a/ssh-add.c
+++ b/ssh-add.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-add.c,v 1.102 2011/10/18 05:00:48 djm Exp $ */ 1/* $OpenBSD: ssh-add.c,v 1.103 2011/10/18 23:37:42 djm 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
@@ -370,12 +370,13 @@ usage(void)
370 fprintf(stderr, "Options:\n"); 370 fprintf(stderr, "Options:\n");
371 fprintf(stderr, " -l List fingerprints of all identities.\n"); 371 fprintf(stderr, " -l List fingerprints of all identities.\n");
372 fprintf(stderr, " -L List public key parameters of all identities.\n"); 372 fprintf(stderr, " -L List public key parameters of all identities.\n");
373 fprintf(stderr, " -k Load only keys and not certificates.\n");
374 fprintf(stderr, " -c Require confirmation to sign using identities\n");
375 fprintf(stderr, " -t life Set lifetime (in seconds) when adding identities.\n");
373 fprintf(stderr, " -d Delete identity.\n"); 376 fprintf(stderr, " -d Delete identity.\n");
374 fprintf(stderr, " -D Delete all identities.\n"); 377 fprintf(stderr, " -D Delete all identities.\n");
375 fprintf(stderr, " -x Lock agent.\n"); 378 fprintf(stderr, " -x Lock agent.\n");
376 fprintf(stderr, " -X Unlock agent.\n"); 379 fprintf(stderr, " -X Unlock agent.\n");
377 fprintf(stderr, " -t life Set lifetime (in seconds) when adding identities.\n");
378 fprintf(stderr, " -c Require confirmation to sign using identities\n");
379 fprintf(stderr, " -s pkcs11 Add keys from PKCS#11 provider.\n"); 380 fprintf(stderr, " -s pkcs11 Add keys from PKCS#11 provider.\n");
380 fprintf(stderr, " -e pkcs11 Remove keys provided by PKCS#11 provider.\n"); 381 fprintf(stderr, " -e pkcs11 Remove keys provided by PKCS#11 provider.\n");
381} 382}