Comment/string tweaks to reflect new DES-in-SSH2 capability.
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Wed, 21 Nov 2001 23:40:46 +0000 (23:40 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Wed, 21 Nov 2001 23:40:46 +0000 (23:40 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@1397 cda61777-01e9-0310-a592-d414129be87e

putty.h
windlg.c

diff --git a/putty.h b/putty.h
index d8be7e5..de92ab6 100644 (file)
--- 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) */
 };
 
index 21ed7a7..cb4b2b5 100644 (file)
--- 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 }
        };