Browse code

Fix typo --data-cipher-fallback

Change-Id: I38e70cb74c10848ab2981efc4c4c8863c5c8785d
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
Acked-by: Arne Schwabe <arne-openvpn@rfc2549.org>
Message-Id: <20240305082236.17566-1-gert@greenie.muc.de>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg28321.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>

Frank Lichtenheld authored on 2024/03/05 17:22:36
Showing 2 changed files
... ...
@@ -75,7 +75,7 @@ which mode OpenVPN is configured as.
75 75
     to the configuration if no other compression options are present.
76 76
   - 2.4.x or lower: The cipher in ``--cipher`` is appended to
77 77
     ``--data-ciphers``.
78
-  - 2.3.x or lower: ``--data-cipher-fallback`` is automatically added with
78
+  - 2.3.x or lower: ``--data-ciphers-fallback`` is automatically added with
79 79
     the same cipher as ``--cipher``.
80 80
   - 2.3.6 or lower: ``--tls-version-min 1.0`` is added to the configuration
81 81
     when ``--tls-version-min`` is not explicitly set.
... ...
@@ -400,7 +400,7 @@ dco_check_option(int msglevel, const struct options *o)
400 400
     if (o->enable_ncp_fallback
401 401
         && !tls_item_in_cipher_list(o->ciphername, dco_get_supported_ciphers()))
402 402
     {
403
-        msg(msglevel, "Note: --data-cipher-fallback with cipher '%s' "
403
+        msg(msglevel, "Note: --data-ciphers-fallback with cipher '%s' "
404 404
             "disables data channel offload.", o->ciphername);
405 405
         return false;
406 406
     }