diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2001-06-26 06:33:08 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2001-06-26 06:33:08 +0000 |
commit | 38ff9051ba504cfdd1c2e9f02b248b2b71c2e9bf (patch) | |
tree | daf4bce5a7f7822fa8f958aabecbc26db6fa46ee /usr.bin/ssh/hostfile.h | |
parent | d4aba5f28304432a57f9be423624f773dd99cc52 (diff) |
prototype pedant. not very creative...
- () -> (void)
- no variable names
Diffstat (limited to 'usr.bin/ssh/hostfile.h')
-rw-r--r-- | usr.bin/ssh/hostfile.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.bin/ssh/hostfile.h b/usr.bin/ssh/hostfile.h index 346bcd9ba54..b83b7700829 100644 --- a/usr.bin/ssh/hostfile.h +++ b/usr.bin/ssh/hostfile.h @@ -1,4 +1,4 @@ -/* $OpenBSD: hostfile.h,v 1.7 2001/02/08 19:30:51 itojun Exp $ */ +/* $OpenBSD: hostfile.h,v 1.8 2001/06/26 06:32:53 itojun Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -15,7 +15,7 @@ #define HOSTFILE_H int -auth_rsa_read_key(char **cpp, u_int *bitsp, BIGNUM * e, BIGNUM * n); +auth_rsa_read_key(char **, u_int *, BIGNUM *, BIGNUM *); /* * Checks whether the given host is already in the list of our known hosts. @@ -28,13 +28,12 @@ typedef enum { } HostStatus; HostStatus -check_host_in_hostfile(const char *filename, const char *host, Key *key, - Key *found, int *line); +check_host_in_hostfile(const char *, const char *, Key *, Key *, int *); /* * Appends an entry to the host file. Returns false if the entry could not * be appended. */ -int add_host_to_hostfile(const char *filename, const char *host, Key *key); +int add_host_to_hostfile(const char *, const char *, Key *); #endif |