This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, next has been updated via 19602b681f9b5d88578162319366e7efde768352 (commit) via 3a5866ac2bc26ddbc5c51192dbc4f653b879036a (commit) from a877032915898b07dcacd165c0f89e427bc672a4 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 19602b681f9b5d88578162319366e7efde768352 Author: Stefan Schantl stefan.schantl@ipfire.org Date: Tue Jan 14 13:53:59 2020 +0100
dns.cgi: Fix ID and greater than checks.
Signed-off-by: Stefan Schantl stefan.schantl@ipfire.org Signed-off-by: Arne Fitzenreiter arne_f@ipfire.org
commit 3a5866ac2bc26ddbc5c51192dbc4f653b879036a Author: Stefan Schantl stefan.schantl@ipfire.org Date: Tue Jan 14 12:14:02 2020 +0100
dns.cgi: Set kdig params for timeout and retry back to default.
Signed-off-by: Stefan Schantl stefan.schantl@ipfire.org Acked-by: Michael Tremer michael.tremer@ipfire.org Signed-off-by: Arne Fitzenreiter arne_f@ipfire.org
-----------------------------------------------------------------------
Summary of changes: html/cgi-bin/dns.cgi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
Difference in files: diff --git a/html/cgi-bin/dns.cgi b/html/cgi-bin/dns.cgi index ff228422b..11415cdf8 100755 --- a/html/cgi-bin/dns.cgi +++ b/html/cgi-bin/dns.cgi @@ -634,7 +634,7 @@ END # Nameservers with an ID's of one or two are ISP assigned, # and we cannot perform any actions on them, so hide the tools for # them. - if ($id gt "2") { + if ($id > 2) {
print <<END; <td align='center' width='5%' $col> @@ -677,7 +677,7 @@ END print"<table width='100%'>\n";
# Check if the usage of the ISP nameservers is enabled and there are more than 2 servers. - if (($settings{'USE_ISP_NAMESERVERS'} eq "on") && ($server_amount gt "2")) { + if (($settings{'USE_ISP_NAMESERVERS'} eq "on") && ($server_amount > 2)) { print <<END; <tr> <td class='boldbase'> <b>$Lang::tr{'legend'}:</b></td> @@ -847,7 +847,7 @@ sub check_nameserver($$$$) { }
# Default values. - my @command = ("kdig", "+timeout=2", "+retry=0", "+dnssec", + my @command = ("kdig", "+dnssec", "+bufsize=1232");
# Handle different protols.
hooks/post-receive -- IPFire 2.x development tree