1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-08 19:02:06 +03:00

crypt: Fix function definition.

This commit is contained in:
Andreas Schneider
2011-09-15 11:04:00 +02:00
parent 68bab2a490
commit 544747d02c
2 changed files with 5 additions and 2 deletions

View File

@@ -474,7 +474,9 @@ static struct crypto_struct ssh_ciphertab[] = {
}
};
struct crypto_struct *ssh_get_ciphertab(){
struct crypto_struct *ssh_get_ciphertab(void)
{
return ssh_ciphertab;
}
#endif