- Remove debug info from #618 fix.

This commit is contained in:
W.C.A. Wijngaards 2022-02-11 16:34:24 +01:00
parent a0feea393a
commit 91a5cc9a08
2 changed files with 1 additions and 1 deletions

View file

@ -3,6 +3,7 @@
respond to CTRL+C command). respond to CTRL+C command).
- Fix #618: enabling interface-automatic disables DNS-over-TLS. - Fix #618: enabling interface-automatic disables DNS-over-TLS.
Adds the option to list interface-automatic-ports. Adds the option to list interface-automatic-ports.
- Remove debug info from #618 fix.
7 February 2022: Wouter 7 February 2022: Wouter
- Fix that TCP interface does not use TLS when TLS is also configured. - Fix that TCP interface does not use TLS when TLS is also configured.

View file

@ -426,7 +426,6 @@ ifautomaticportschecks(char* ifautomaticports)
fatal_exit("interface-automatic-ports: port out of range at position %d in '%s'", (int)(now-ifautomaticports)+1, ifautomaticports); fatal_exit("interface-automatic-ports: port out of range at position %d in '%s'", (int)(now-ifautomaticports)+1, ifautomaticports);
if(extraport == 0 && now == after) if(extraport == 0 && now == after)
fatal_exit("interface-automatic-ports: parse error at position %d in '%s'", (int)(now-ifautomaticports)+1, ifautomaticports); fatal_exit("interface-automatic-ports: parse error at position %d in '%s'", (int)(now-ifautomaticports)+1, ifautomaticports);
log_info("extraport %d", extraport);
now = after; now = after;
} }
} }