From 227f1ed1dd5e0fe13f2d0748ef99ff45b7a27b93 Mon Sep 17 00:00:00 2001 From: sreknob Date: Thu, 18 Jan 2018 21:14:22 -0500 Subject: [PATCH] update suggess regex from dnsexit ipUpdate.pl script --- ddclient | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ddclient b/ddclient index 7f949fb..dcb05e6 100755 --- a/ddclient +++ b/ddclient @@ -4753,8 +4753,8 @@ sub nic_dnsexit_update { } last if !header_ok($h, $reply); - # Response found, look for 0, 4, or 11 status as success" - if ($reply =~ /0=|4=|1=/) + # Response found + if ($reply =~ /(\d+)=(.+)/) { $config{$h}{'ip'} = $ip; $config{$h}{'mtime'} = $now;