diff options
author | 2003-11-21 11:57:02 +0000 | |
---|---|---|
committer | 2003-11-21 11:57:02 +0000 | |
commit | 30e570c7ab8a046b112e59752b75a53155a0c6c7 (patch) | |
tree | 6cbc149f31f085d649f880b07b38558b325b4803 /usr.bin/ssh/ssh-add.c | |
parent | sync with <mount.h>; from FreeBSD; (diff) | |
download | wireguard-openbsd-30e570c7ab8a046b112e59752b75a53155a0c6c7.tar.xz wireguard-openbsd-30e570c7ab8a046b112e59752b75a53155a0c6c7.zip |
unexpand and delete whitespace at EOL; ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh-add.c')
-rw-r--r-- | usr.bin/ssh/ssh-add.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/ssh-add.c b/usr.bin/ssh/ssh-add.c index cd3ef906e58..e76fa985fee 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.68 2003/06/16 10:22:45 markus Exp $"); +RCSID("$OpenBSD: ssh-add.c,v 1.69 2003/11/21 11:57:03 djm Exp $"); #include <openssl/evp.h> @@ -163,14 +163,14 @@ add_file(AuthenticationConnection *ac, const char *filename) } } - if (ssh_add_identity_constrained(ac, private, comment, lifetime, - confirm)) { + if (ssh_add_identity_constrained(ac, private, comment, lifetime, + confirm)) { fprintf(stderr, "Identity added: %s (%s)\n", filename, comment); ret = 0; if (lifetime != 0) fprintf(stderr, "Lifetime set to %d seconds\n", lifetime); - if (confirm != 0) + if (confirm != 0) fprintf(stderr, "The user has to confirm each use of the key\n"); } else if (ssh_add_identity(ac, private, comment)) { |