From: Fabian Keil <fk@fabiankeil.de>
Date: Tue, 14 Jun 2022 03:45:51 +0000 (+0200)
Subject: windows/MYconfigure: Fix spelling of 'difference' in a comment
X-Git-Tag: v_3_0_34~98
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/faq/quickstart.html?a=commitdiff_plain;h=ed36fcd3daa7d4696342ebe738d36c4348705cd5;p=privoxy.git

windows/MYconfigure: Fix spelling of 'difference' in a comment
---

diff --git a/windows/MYconfigure b/windows/MYconfigure
index 4d0f2ae1..832581d2 100755
--- a/windows/MYconfigure
+++ b/windows/MYconfigure
@@ -52,7 +52,7 @@ LDFLAGS="${LDFLAGS} -fstack-protector-strong"
 # -D_FORTIFY_SOURCE:  detect some buffer overflow errors
 #     ***>> requires compiler optimization level 1 or above <<***
 # see : https://gcc.gnu.org/legacy-ml/gcc-patches/2004-09/msg02055.html
-#   The diffence between -D_FORTIFY_SOURCE=1 and -D_FORTIFY_SOURCE=2 is e.g. for
+#   The difference between -D_FORTIFY_SOURCE=1 and -D_FORTIFY_SOURCE=2 is e.g. for
 #     struct S { struct T { char buf[5]; int x; } t; char buf[20]; } var;
 #   With -D_FORTIFY_SOURCE=1,
 #     strcpy (&var.t.buf[1], "abcdefg");