From: jacob Date: Wed, 21 Nov 2001 23:40:46 +0000 (+0000) Subject: Comment/string tweaks to reflect new DES-in-SSH2 capability. X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/7f1ae1d2bbbfb351d173113193250d61666eb72e Comment/string tweaks to reflect new DES-in-SSH2 capability. git-svn-id: svn://svn.tartarus.org/sgt/putty@1397 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/putty.h b/putty.h index d8be7e51..de92ab69 100644 --- a/putty.h +++ b/putty.h @@ -173,7 +173,7 @@ enum { CIPHER_3DES, CIPHER_BLOWFISH, CIPHER_AES, /* (SSH 2 only) */ - CIPHER_DES, /* (SSH 1 only) */ + CIPHER_DES, CIPHER_MAX /* no. ciphers (inc warn) */ }; diff --git a/windlg.c b/windlg.c index 21ed7a78..cb4b2b53 100644 --- a/windlg.c +++ b/windlg.c @@ -741,7 +741,7 @@ static void init_dlg_ctrls(HWND hwnd, int keepsess) static const struct { char *s; int c; } ciphers[] = { { "3DES", CIPHER_3DES }, { "Blowfish", CIPHER_BLOWFISH }, - { "DES (SSH 1 only)", CIPHER_DES }, + { "DES", CIPHER_DES }, { "AES (SSH 2 only)", CIPHER_AES }, { "-- warn below here --", CIPHER_WARN } };