Browse code

fix a couple of typ0s in comments and strings

Signed-off-by: Antonio Quartulli <a@unstable.cc>
Acked-by: David Sommerseth <davids@openvpn.net>
Message-Id: <20170819075209.28520-1-a@unstable.cc>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg15293.html
Signed-off-by: David Sommerseth <davids@openvpn.net>

Antonio Quartulli authored on 2017/08/19 16:52:09
Showing 4 changed files
... ...
@@ -230,7 +230,7 @@ AC_ARG_ENABLE(
230 230
 
231 231
 AC_ARG_ENABLE(
232 232
 	[werror],
233
-	[AS_HELP_STRING([--enable-werror], [promote compiler warnings to errors, will cause builds to fail is the compiler issues warnings (debugging option) @<:@default=no@:>@])],
233
+	[AS_HELP_STRING([--enable-werror], [promote compiler warnings to errors, will cause builds to fail if the compiler issues warnings (debugging option) @<:@default=no@:>@])],
234 234
 	,
235 235
 	[enable_werror="no"]
236 236
 )
... ...
@@ -26,7 +26,7 @@
26 26
 #ifndef OPENVPN_BLOCK_DNS_H
27 27
 #define OPENVPN_BLOCK_DNS_H
28 28
 
29
-/* Any value less than 5 should work fine. 3 is choosen without any real reason. */
29
+/* Any value less than 5 should work fine. 3 is chosen without any real reason. */
30 30
 #define BLOCK_DNS_IFACE_METRIC 3
31 31
 
32 32
 typedef void (*block_dns_msg_handler_t) (DWORD err, const char *msg);
... ...
@@ -91,7 +91,7 @@ struct gc_entry
91 91
 };
92 92
 
93 93
 /**
94
- * Gargabe collection entry for a specially allocated structure that needs
94
+ * Garbage collection entry for a specially allocated structure that needs
95 95
  * a custom free function to be freed like struct addrinfo
96 96
  *
97 97
  */
... ...
@@ -181,7 +181,7 @@ struct options
181 181
 
182 182
     /* enable forward compatibility for post-2.1 features */
183 183
     bool forward_compatible;
184
-    /* list of options that should be ignored even if unkown */
184
+    /* list of options that should be ignored even if unknown */
185 185
     const char **ignore_unknown_option;
186 186
 
187 187
     /* persist parms */