diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2000-12-19 23:18:00 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2000-12-19 23:18:00 +0000 |
commit | c441e39b290077e6eeba4bc4404e49dc1da5157d (patch) | |
tree | 43226c2f4d399eb7c9606d7ee2ee3f67699f3ab6 /usr.bin/ssh/ssh-dss.h | |
parent | c5d02956f7af6ef386eba1f24c13a1ddb1c37b0b (diff) |
replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned'
with u_char.
Diffstat (limited to 'usr.bin/ssh/ssh-dss.h')
-rw-r--r-- | usr.bin/ssh/ssh-dss.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/ssh-dss.h b/usr.bin/ssh/ssh-dss.h index 7b376e82f1f..4252f394210 100644 --- a/usr.bin/ssh/ssh-dss.h +++ b/usr.bin/ssh/ssh-dss.h @@ -27,13 +27,13 @@ int ssh_dss_sign( Key *key, - unsigned char **sigp, int *lenp, - unsigned char *data, int datalen); + u_char **sigp, int *lenp, + u_char *data, int datalen); int ssh_dss_verify( Key *key, - unsigned char *signature, int signaturelen, - unsigned char *data, int datalen); + u_char *signature, int signaturelen, + u_char *data, int datalen); #endif |