diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-04-17 16:22:44 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-04-17 16:22:44 +0300 |
commit | 4b98106ce555f9364541e941973852ddc4d34389 (patch) | |
tree | 3c53812150b68a731bef0a3b051369eeba8af933 /test/nonfatal1.awk | |
parent | dde5bd1c2baadf2c34f15187efb481694043d606 (diff) | |
download | egawk-4b98106ce555f9364541e941973852ddc4d34389.tar.gz egawk-4b98106ce555f9364541e941973852ddc4d34389.tar.bz2 egawk-4b98106ce555f9364541e941973852ddc4d34389.zip |
Fix nonfatal1 test for ISPs that resolve local:host.domain.
Diffstat (limited to 'test/nonfatal1.awk')
-rw-r--r-- | test/nonfatal1.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/nonfatal1.awk b/test/nonfatal1.awk index a9228f3a..b782266d 100644 --- a/test/nonfatal1.awk +++ b/test/nonfatal1.awk @@ -1,6 +1,6 @@ BEGIN { PROCINFO["NONFATAL"] - # note that ":" is not a valid hostname character - print |& "/inet/tcp/0/local:host/25" + # note the bad characters in the hostname + print |& "/inet/tcp/0/local@#!%host/25" print (ERRNO != "") } |