1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-30 13:01:23 +03:00

SSH1: fix duplicate identifier

This commit is contained in:
Aris Adamantiadis
2015-09-25 08:52:38 +02:00
parent e83b4e8129
commit d46fe6a51c
2 changed files with 2 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ enum ssh_key_exchange_e {
}; };
enum ssh_cipher_e { enum ssh_cipher_e {
SSH_CIPHER_NONE=0, SSH_NO_CIPHER=0,
SSH_BLOWFISH_CBC, SSH_BLOWFISH_CBC,
SSH_3DES_CBC, SSH_3DES_CBC,
SSH_3DES_CBC_SSH1, SSH_3DES_CBC_SSH1,

View File

@@ -458,7 +458,7 @@ static void evp_cipher_init(struct ssh_cipher_struct *cipher) {
case SSH_DES_CBC_SSH1: case SSH_DES_CBC_SSH1:
SSH_LOG(SSH_LOG_WARNING, "This cipher should not use evp_cipher_init"); SSH_LOG(SSH_LOG_WARNING, "This cipher should not use evp_cipher_init");
break; break;
case SSH_CIPHER_NONE: case SSH_NO_CIPHER:
SSH_LOG(SSH_LOG_WARNING, "No valid ciphertype found"); SSH_LOG(SSH_LOG_WARNING, "No valid ciphertype found");
break; break;
} }