public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] ddns: Add upstream patch to fix a typo for FreeDNSAfraid.org provider
@ 2021-10-23 19:16 Stefan Schantl
  2021-10-23 19:37 ` Bernhard Bitsch
  0 siblings, 1 reply; 2+ messages in thread
From: Stefan Schantl @ 2021-10-23 19:16 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1906 bytes --]

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 lfs/ddns                                      |  2 +-
 .../ddns-014-freednsafraid-fix-typo.patch     | 21 +++++++++++++++++++
 2 files changed, 22 insertions(+), 1 deletion(-)
 create mode 100644 src/patches/ddns-014-freednsafraid-fix-typo.patch

diff --git a/lfs/ddns b/lfs/ddns
index b1d0f2dbb..873f927af 100644
--- a/lfs/ddns
+++ b/lfs/ddns
@@ -72,7 +72,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
 
 	# Apply upstream patches.
-	# No upstream patches at the moment.
+	cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/ddns-014-freednsafraid-fix-typo.patch
 
 	cd $(DIR_APP) && [ -x "configure" ] || sh ./autogen.sh
 	cd $(DIR_APP) && ./configure \
diff --git a/src/patches/ddns-014-freednsafraid-fix-typo.patch b/src/patches/ddns-014-freednsafraid-fix-typo.patch
new file mode 100644
index 000000000..4982d52f4
--- /dev/null
+++ b/src/patches/ddns-014-freednsafraid-fix-typo.patch
@@ -0,0 +1,21 @@
+commit 3a162595b9b44a4cbf08a3db14a4d2ebfeeb5583
+Author: Stefan Schantl <stefan.schantl(a)ipfire.org>
+Date:   Sat Oct 23 21:11:27 2021 +0200
+
+    FreeDNSAfraid.org: Fix typo in checking if the IP has been changed.
+    
+    Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
+
+diff --git a/src/ddns/providers.py b/src/ddns/providers.py
+index 4f27af9..5b2a82d 100644
+--- a/src/ddns/providers.py
++++ b/src/ddns/providers.py
+@@ -1204,7 +1204,7 @@ class DDNSProviderFreeDNSAfraidOrg(DDNSProvider):
+ 		output = response.read().decode()
+ 
+ 		# Handle success messages.
+-		if output.startswith("Updated") or output.startswith("No IP changed detected"):
++		if output.startswith("Updated") or output.startswith("No IP change detected"):
+ 			return
+ 
+ 		# Handle error codes.
-- 
2.30.2


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] ddns: Add upstream patch to fix a typo for FreeDNSAfraid.org provider
  2021-10-23 19:16 [PATCH] ddns: Add upstream patch to fix a typo for FreeDNSAfraid.org provider Stefan Schantl
@ 2021-10-23 19:37 ` Bernhard Bitsch
  0 siblings, 0 replies; 2+ messages in thread
From: Bernhard Bitsch @ 2021-10-23 19:37 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 2200 bytes --]

Reported-by: Bernhard Bitsch <bbitsch(a)ipfire.org>
Reviewed-by: Bernhard Bitsch <bbitsch(a)ipfire.org>
Tested-by: Bernhard Bitsch <bbitsch(a)ipfire.org>

Am 23.10.2021 um 21:16 schrieb Stefan Schantl:
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
>   lfs/ddns                                      |  2 +-
>   .../ddns-014-freednsafraid-fix-typo.patch     | 21 +++++++++++++++++++
>   2 files changed, 22 insertions(+), 1 deletion(-)
>   create mode 100644 src/patches/ddns-014-freednsafraid-fix-typo.patch
> 
> diff --git a/lfs/ddns b/lfs/ddns
> index b1d0f2dbb..873f927af 100644
> --- a/lfs/ddns
> +++ b/lfs/ddns
> @@ -72,7 +72,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
>   	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
>   
>   	# Apply upstream patches.
> -	# No upstream patches at the moment.
> +	cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/ddns-014-freednsafraid-fix-typo.patch
>   
>   	cd $(DIR_APP) && [ -x "configure" ] || sh ./autogen.sh
>   	cd $(DIR_APP) && ./configure \
> diff --git a/src/patches/ddns-014-freednsafraid-fix-typo.patch b/src/patches/ddns-014-freednsafraid-fix-typo.patch
> new file mode 100644
> index 000000000..4982d52f4
> --- /dev/null
> +++ b/src/patches/ddns-014-freednsafraid-fix-typo.patch
> @@ -0,0 +1,21 @@
> +commit 3a162595b9b44a4cbf08a3db14a4d2ebfeeb5583
> +Author: Stefan Schantl <stefan.schantl(a)ipfire.org>
> +Date:   Sat Oct 23 21:11:27 2021 +0200
> +
> +    FreeDNSAfraid.org: Fix typo in checking if the IP has been changed.
> +
> +    Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> +
> +diff --git a/src/ddns/providers.py b/src/ddns/providers.py
> +index 4f27af9..5b2a82d 100644
> +--- a/src/ddns/providers.py
> ++++ b/src/ddns/providers.py
> +@@ -1204,7 +1204,7 @@ class DDNSProviderFreeDNSAfraidOrg(DDNSProvider):
> + 		output = response.read().decode()
> +
> + 		# Handle success messages.
> +-		if output.startswith("Updated") or output.startswith("No IP changed detected"):
> ++		if output.startswith("Updated") or output.startswith("No IP change detected"):
> + 			return
> +
> + 		# Handle error codes.
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-10-23 19:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-23 19:16 [PATCH] ddns: Add upstream patch to fix a typo for FreeDNSAfraid.org provider Stefan Schantl
2021-10-23 19:37 ` Bernhard Bitsch

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox