# HG changeset patch # User Matt Johnston # Date 1590494731 -28800 # Node ID b9a466b43de0c769d662227abada2afd6c699487 # Parent d5d25ce2a2ed028732245d018b4730adf71eb554 Get rid of unused "none" cipher option diff -r d5d25ce2a2ed -r b9a466b43de0 common-runopts.c --- a/common-runopts.c Tue May 26 19:57:28 2020 +0800 +++ b/common-runopts.c Tue May 26 20:05:31 2020 +0800 @@ -76,12 +76,6 @@ dropbear_exit("."); } - if (strcmp(opts.cipher_list, "none") == 0) - { - /* Encryption is required during authentication */ - opts.cipher_list = "none,aes128-ctr"; - } - if (check_user_algos(opts.cipher_list, sshciphers, "cipher") == 0) { dropbear_exit("No valid ciphers specified for '-c'");