=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/ssh-add.c,v retrieving revision 1.38 retrieving revision 1.39 diff -u -r1.38 -r1.39 --- src/usr.bin/ssh/ssh-add.c 2001/06/06 23:19:35 1.38 +++ src/usr.bin/ssh/ssh-add.c 2001/06/23 15:12:20 1.39 @@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-add.c,v 1.38 2001/06/06 23:19:35 markus Exp $"); +RCSID("$OpenBSD: ssh-add.c,v 1.39 2001/06/23 15:12:20 itojun Exp $"); #include @@ -51,7 +51,7 @@ /* we keep a cache of one passphrases */ static char *pass = NULL; -void +static void clear_pass(void) { if (pass) { @@ -61,7 +61,7 @@ } } -void +static void delete_file(AuthenticationConnection *ac, const char *filename) { Key *public; @@ -81,7 +81,7 @@ } /* Send a request to remove all identities. */ -void +static void delete_all(AuthenticationConnection *ac) { int success = 1; @@ -97,7 +97,7 @@ fprintf(stderr, "Failed to remove all identities.\n"); } -void +static void add_file(AuthenticationConnection *ac, const char *filename) { struct stat st; @@ -143,7 +143,7 @@ key_free(private); } -void +static void list_identities(AuthenticationConnection *ac, int do_fp) { Key *key;