summaryrefslogtreecommitdiff
path: root/ipv6test.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-25 14:50:39 -0500
committerJeff Carr <[email protected]>2025-10-25 14:50:39 -0500
commit9c2c4a74f3cbdc44219e6259317cdc734ec93e99 (patch)
treeef8d8980b76bfb8fc044974670f86fec7da0c289 /ipv6test.go
parent6093077b9b82a9ba742375563bcffb2b9074441e (diff)
builds again
Diffstat (limited to 'ipv6test.go')
-rw-r--r--ipv6test.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/ipv6test.go b/ipv6test.go
index 45ff985..c6befb0 100644
--- a/ipv6test.go
+++ b/ipv6test.go
@@ -8,6 +8,7 @@ import (
"os"
"time"
+ "go.wit.com/lib/protobuf/argvpb"
"go.wit.com/log"
)
@@ -22,7 +23,7 @@ func ipv6fails() bool {
log.Info(s)
WarningForIpv4()
s = "THIS FEATURE IS NOT SUPPORTED ON IPv4"
- me.argv.BadExit(s, nil)
+ argvpb.BadExit(s, nil)
}
if len(addrs) == 0 {
log.Info("wierd. probably ipv6 dns problems")
@@ -34,7 +35,7 @@ func ipv6fails() bool {
log.Info(s)
WarningForIpv4()
s = "THIS FEATURE IS NOT SUPPORTED ON IPv4"
- me.argv.BadExit(s, nil)
+ argvpb.BadExit(s, nil)
}
*/
@@ -44,7 +45,7 @@ func ipv6fails() bool {
log.Info(s)
WarningForIpv4()
s = "THIS FEATURE IS NOT SUPPORTED ON IPv4"
- me.argv.BadExit(s, nil)
+ argvpb.BadExit(s, nil)
}
return true
}