diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-08-01 22:03:34 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-08-01 22:03:34 +0000 |
commit | 8327c54231785fc6d95c26b14198cf8880de1713 (patch) | |
tree | 973006234d7fd405eb3a0600b797b4474affb05a /usr.bin/ssh/authfd.h | |
parent | 760cd39ba07ea3adf7b9ba4c3981b3c47b6cb7bb (diff) |
use strings instead of ints for smartcard reader ids
Diffstat (limited to 'usr.bin/ssh/authfd.h')
-rw-r--r-- | usr.bin/ssh/authfd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/authfd.h b/usr.bin/ssh/authfd.h index 5aac78bda91..b7e88fde8e5 100644 --- a/usr.bin/ssh/authfd.h +++ b/usr.bin/ssh/authfd.h @@ -11,7 +11,7 @@ * called by a name other than "ssh" or "Secure Shell". */ -/* RCSID("$OpenBSD: authfd.h,v 1.19 2001/06/26 17:27:22 markus Exp $"); */ +/* RCSID("$OpenBSD: authfd.h,v 1.20 2001/08/01 22:03:33 markus Exp $"); */ #ifndef AUTHFD_H #define AUTHFD_H @@ -62,9 +62,9 @@ int ssh_get_num_identities(AuthenticationConnection *, int); Key *ssh_get_first_identity(AuthenticationConnection *, char **, int); Key *ssh_get_next_identity(AuthenticationConnection *, char **, int); int ssh_add_identity(AuthenticationConnection *, Key *, const char *); -int ssh_remove_identity(AuthenticationConnection *, Key *); +int ssh_remove_identity(AuthenticationConnection *, Key *); int ssh_remove_all_identities(AuthenticationConnection *, int); -int ssh_update_card(AuthenticationConnection *, int, int); +int ssh_update_card(AuthenticationConnection *, int, const char *); int ssh_decrypt_challenge(AuthenticationConnection *, Key *, BIGNUM *, u_char[16], |