diff options
author | 2002-06-15 00:01:36 +0000 | |
---|---|---|
committer | 2002-06-15 00:01:36 +0000 | |
commit | d77f6525fb4f8b07be47dc2e03bc3f3a9fe4f657 (patch) | |
tree | ef0f0f41644aab7ea3bc42f0995a1f2a61c8c4d9 /usr.bin/ssh/ssh-add.c | |
parent | spelling; from Brian Poole <raj@cerias.purdue.edu> (diff) | |
download | wireguard-openbsd-d77f6525fb4f8b07be47dc2e03bc3f3a9fe4f657.tar.xz wireguard-openbsd-d77f6525fb4f8b07be47dc2e03bc3f3a9fe4f657.zip |
break agent key lifetime protocol and allow other contraints for key usage.
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); |