summaryrefslogtreecommitdiff
path: root/authfd.h
diff options
context:
space:
mode:
authormouring <mouring>2001-08-06 21:35:51 +0000
committermouring <mouring>2001-08-06 21:35:51 +0000
commit7a9d9b56ec6231125e2890f9756b0f5a3e24713a (patch)
tree12f0b67ca5e3ac99d4ae312d98a621058904bfe1 /authfd.h
parentc84b6610b27a0d2f2fc0bb330890f7182526bb69 (diff)
downloadopenssh-7a9d9b56ec6231125e2890f9756b0f5a3e24713a.tar.gz
- markus@cvs.openbsd.org 2001/08/01 22:03:33
[authfd.c authfd.h readconf.c readconf.h scard.c scard.h ssh-add.c ssh-agent.c ssh.c] use strings instead of ints for smartcard reader ids
Diffstat (limited to 'authfd.h')
-rw-r--r--authfd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/authfd.h b/authfd.h
index 5aac78bd..b7e88fde 100644
--- a/authfd.h
+++ b/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],