Syntax errors

These changes have not been verified, but it seems clear
that they are error.
This commit is contained in:
Tomas Abad 2023-05-31 18:26:23 +02:00
parent 78cac6a07c
commit b6b5e2a58c
6 changed files with 18 additions and 18 deletions

View file

@ -21,7 +21,7 @@
# check arg type str of correct length passed
if (([:typeof $WebSiteName]!="str") or \
([:len value=$WebSiteName] < 6)) do={
([:len $WebSiteName] < 6)) do={
$LogMessageFunc ("DnsResolveFunc: arg value $WebSiteName not \
a valid string!");
}
@ -50,7 +50,7 @@
# check arg type str of correct length passed
if (([:typeof $SiteName] != "str") or \
([:len value=$SiteName] < 6)) do={
([:len $SiteName] < 6)) do={
$LogMessageFunc ("GetWebPageFunc: arg value $SiteName not a \
valid string!");
}