1
1

crypt: Fix function definition.

Этот коммит содержится в:
Andreas Schneider 2011-09-15 11:04:00 +02:00
родитель 68bab2a490
Коммит 544747d02c
2 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -527,7 +527,8 @@ static struct crypto_struct ssh_ciphertab[] = {
};
struct crypto_struct *ssh_get_ciphertab(){
struct crypto_struct *ssh_get_ciphertab(void)
{
return ssh_ciphertab;
}

Просмотреть файл

@ -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