]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
Various typo fixes
authorFrank Lichtenheld <frank@lichtenheld.com>
Thu, 28 Nov 2024 12:30:16 +0000 (13:30 +0100)
committerGert Doering <gert@greenie.muc.de>
Thu, 28 Nov 2024 12:32:59 +0000 (13:32 +0100)
This collects some minor typo fixes that are not
worth each their own commit.

Fixes: OpenVPN/openvpn#644
Fixes: OpenVPN/openvpn#442
Change-Id: Ifad21a2841e97e910775f3618ddac1c483d74b65
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <20241128123016.10444-1-gert@greenie.muc.de>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg29956.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
doc/man-sections/connection-profiles.rst
sample/sample-config-files/server.conf
src/openvpn/options.c

index 520bbefc22d58ffb09dc6bc0d1180a9f7a8a1506..767ff3a33158760a1fe9f464f21f8e10729da2b7 100644 (file)
@@ -6,7 +6,7 @@ it will attempt to connect against.  But there are some configuration
 options which are related to specific ``--remote`` options.  For these
 use cases, connection profiles are the solution.
 
-By enacpulating the ``--remote`` option and related options within
+By encapsulating the ``--remote`` option and related options within
 ``<connection>`` and ``</connection>``, these options are handled as a
 group.
 
index 48716a09f74a147e8c80a7fec6e9da1880ef177b..f6d9e65f098f4478407131f4623be84e4bce2cc9 100644 (file)
@@ -199,7 +199,7 @@ ifconfig-pool-persist ipp.txt
 # all clients to redirect their default
 # network gateway through the VPN, causing
 # all IP traffic such as web browsing and
-# and DNS lookups to go through the VPN
+# DNS lookups to go through the VPN
 # (The OpenVPN server machine may need to NAT
 # or bridge the TUN/TAP interface to the internet
 # in order for this to work properly).
index 043b2406b8787ac1535b3333116c6109c295ef21..d8dd51806a6b78df91f686c7c7ff32bcdf5dc56d 100644 (file)
@@ -879,7 +879,7 @@ init_options(struct options *o, const bool init_gc)
     o->pkcs11_pin_cache_period = -1;
 #endif                  /* ENABLE_PKCS11 */
 
-/* P2MP server context features */
+    /* P2MP server context features */
     o->auth_token_generate = false;
 
     /* Set default --tmp-dir */
@@ -2966,7 +2966,7 @@ options_postprocess_verify_ce(const struct options *options,
         if (options->pkcs12_file)
         {
 #ifdef ENABLE_CRYPTO_MBEDTLS
-            msg(M_USAGE, "Parameter --pkcs12 cannot be used with the mbed TLS version version of OpenVPN.");
+            msg(M_USAGE, "Parameter --pkcs12 cannot be used with the mbed TLS version of OpenVPN.");
 #else
             if (options->ca_path)
             {
@@ -2995,7 +2995,7 @@ options_postprocess_verify_ce(const struct options *options,
 #ifdef ENABLE_CRYPTO_MBEDTLS
             if (options->ca_path)
             {
-                msg(M_USAGE, "Parameter --capath cannot be used with the mbed TLS version version of OpenVPN.");
+                msg(M_USAGE, "Parameter --capath cannot be used with the mbed TLS version of OpenVPN.");
             }
 #endif  /* ifdef ENABLE_CRYPTO_MBEDTLS */
             if (pull)