diff options
Diffstat (limited to 'usr.bin/ssh/ssh-add.c')
-rw-r--r-- | usr.bin/ssh/ssh-add.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-add.c b/usr.bin/ssh/ssh-add.c index 716f6f66bc7..7235110ad7b 100644 --- a/usr.bin/ssh/ssh-add.c +++ b/usr.bin/ssh/ssh-add.c @@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-add.c,v 1.57 2002/06/10 17:36:23 stevesk Exp $"); +RCSID("$OpenBSD: ssh-add.c,v 1.58 2002/06/15 00:01:36 markus Exp $"); #include <openssl/evp.h> @@ -165,7 +165,7 @@ add_file(AuthenticationConnection *ac, const char *filename) fprintf(stderr, "Could not add identity: %s\n", filename); if (ret == 0 && lifetime != 0) { - if (ssh_lifetime_identity(ac, private, lifetime)) { + if (ssh_contrain_identity(ac, private, lifetime)) { fprintf(stderr, "Lifetime set to %d seconds for: %s (%s)\n", lifetime, filename, comment); |