Added patches and applied regex_vlan.patch. See bug #1747337
git-svn-id: svn+ssh://svn.code.sf.net/p/ddclient/code/trunk@62 3873ddee-7413-0410-b6c4-c2c57c1ab35a
This commit is contained in:
parent
728694e795
commit
0cb7275311
4 changed files with 53 additions and 1 deletions
|
@ -1601,7 +1601,7 @@ sub check_value {
|
||||||
return undef if $value eq "";
|
return undef if $value eq "";
|
||||||
|
|
||||||
} elsif ($type eq T_IF) {
|
} elsif ($type eq T_IF) {
|
||||||
return undef if $value !~ /^[a-z0-9:_-]+$/;
|
return undef if $value !~ /^[a-z0-9:._-]+$/;
|
||||||
|
|
||||||
} elsif ($type eq T_PROG) {
|
} elsif ($type eq T_PROG) {
|
||||||
return undef if $value eq "";
|
return undef if $value eq "";
|
||||||
|
|
16
svn/patches/create_patch.sh
Executable file
16
svn/patches/create_patch.sh
Executable file
|
@ -0,0 +1,16 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# whichlist
|
||||||
|
# * add getopt
|
||||||
|
# * automatic version
|
||||||
|
|
||||||
|
{
|
||||||
|
cat <<EOF
|
||||||
|
#
|
||||||
|
# patch created with \`svn diff -r$1 . > patches/$2\`
|
||||||
|
# on $(date)
|
||||||
|
# applied on r$1
|
||||||
|
#
|
||||||
|
EOF
|
||||||
|
svn diff -r$1 ddclient
|
||||||
|
} > patches/$2.new
|
||||||
|
|
18
svn/patches/regex_vlan.patch
Normal file
18
svn/patches/regex_vlan.patch
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
#
|
||||||
|
# patch created with `svn diff -r61 . > patches/regex_vlan.patch`
|
||||||
|
# on Tue Jul 10 21:29:49 CEST 2007
|
||||||
|
# applied on r61
|
||||||
|
#
|
||||||
|
Index: ddclient
|
||||||
|
===================================================================
|
||||||
|
--- ddclient (revision 61)
|
||||||
|
+++ ddclient (working copy)
|
||||||
|
@@ -1601,7 +1601,7 @@
|
||||||
|
return undef if $value eq "";
|
||||||
|
|
||||||
|
} elsif ($type eq T_IF) {
|
||||||
|
- return undef if $value !~ /^[a-z0-9:_-]+$/;
|
||||||
|
+ return undef if $value !~ /^[a-z0-9:._-]+$/;
|
||||||
|
|
||||||
|
} elsif ($type eq T_PROG) {
|
||||||
|
return undef if $value eq "";
|
18
svn/patches/typo_namecheap_patch.diff.new
Normal file
18
svn/patches/typo_namecheap_patch.diff.new
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
#
|
||||||
|
# patch created with `svn diff -r57 . > patches/typo_namecheap_patch.diff`
|
||||||
|
# on Tue Jul 10 09:25:19 CEST 2007
|
||||||
|
# applied on r57
|
||||||
|
#
|
||||||
|
Index: ddclient
|
||||||
|
===================================================================
|
||||||
|
--- ddclient (revision 59)
|
||||||
|
+++ ddclient (working copy)
|
||||||
|
@@ -3014,7 +3014,7 @@
|
||||||
|
|
||||||
|
The 'namecheap' protocol is used by DNS service offered by www.namecheap.com.
|
||||||
|
|
||||||
|
-Configuration variables applicable to the 'easydns' protocol are:
|
||||||
|
+Configuration variables applicable to the 'namecheap' protocol are:
|
||||||
|
protocol=namecheap ##
|
||||||
|
server=fqdn.of.service ## defaults to dynamicdns.park-your-domain.com
|
||||||
|
login=service-login ## login name and password registered with the service
|
Loading…
Reference in a new issue