mirror of
https://github.com/openssh/libopenssh
synced 2026-04-24 13:46:45 +00:00
unbreak AES by adding the lost negation for the compat flag back
This commit is contained in:
@@ -208,7 +208,7 @@ compat_cipher_proposal(char *cipher_prop, u_int compat)
|
||||
char *orig_prop, *fix_ciphers, *cp, *tmp;
|
||||
size_t maxlen;
|
||||
|
||||
if (compat & SSH_BUG_BIGENDIANAES)
|
||||
if (!(compat & SSH_BUG_BIGENDIANAES))
|
||||
return cipher_prop;
|
||||
|
||||
tmp = orig_prop = strdup(cipher_prop);
|
||||
|
||||
Reference in New Issue
Block a user