summaryrefslogtreecommitdiff
path: root/ssh-add.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2011-11-04 10:51:51 +1100
committerDarren Tucker <dtucker@zip.com.au>2011-11-04 10:51:51 +1100
commite68cf84ac873f0b3fd566c55d6a915fd7843e76b (patch)
tree834ba39f7af52a96831a496861be8828e20afe0b /ssh-add.c
parent45c66d7ad4a06ffe85014c6522eebcede042e87f (diff)
- djm@cvs.openbsd.org 2011/10/18 23:37:42
[ssh-add.c] add -k to usage(); reminded by jmc@
Diffstat (limited to 'ssh-add.c')
-rw-r--r--ssh-add.c7
1 files changed, 4 insertions, 3 deletions
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}