aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.main.go.swpbin20480 -> 0 bytes
-rw-r--r--main.go9
2 files changed, 8 insertions, 1 deletions
diff --git a/.main.go.swp b/.main.go.swp
deleted file mode 100644
index 36e0a39..0000000
--- a/.main.go.swp
+++ /dev/null
Binary files differ
diff --git a/main.go b/main.go
index fcd8bbf..569d9fe 100644
--- a/main.go
+++ b/main.go
@@ -237,7 +237,7 @@ func workGenerator(ctx context.Context, opts options.Options, fp *os.File, quest
select {
case <-ctx.Done():
return nextLine, false
- case questionCh <- qna.Question{Domain: scanner.Text()}:
+ case questionCh <- qna.Question{Domain: trimWildcard(scanner.Text())}:
nextLine++
readCount++
case <-metrics.C:
@@ -259,3 +259,10 @@ func workGenerator(ctx context.Context, opts options.Options, fp *os.File, quest
}
return nextLine, true
}
+
+func trimWildcard(san string) string {
+ if len(san) >= 2 && san[:2] == "*." {
+ return san[2:]
+ }
+ return san
+}