Skip to content

Commit a5fb47b

Browse files
committed
go fmt
1 parent e02d59e commit a5fb47b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Usage of ./certscan: [OPTION]... HOST...
1515
-port uint
1616
tcp port to connect to (default 443)
1717
-save string
18-
save certs to folder
18+
save certs to folder in PEM formate
1919
-sort
2020
visit and print domains in sorted order
2121
-starttls

certscan.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func main() {
6060
flag.UintVar(&parallel, "parallel", 10, "number of certificates to retrieve in parallel")
6161
flag.BoolVar(&starttls, "starttls", false, "connect without TLS and then upgrade with STARTTLS for SMTP, useful with -port 25")
6262
flag.BoolVar(&sortCerts, "sort", false, "visit and print domains in sorted order")
63-
flag.StringVar(&savePath, "save", "", "save certs to folder")
63+
flag.StringVar(&savePath, "save", "", "save certs to folder in PEM formate")
6464
flag.Usage = func() {
6565
fmt.Fprintf(os.Stderr, "Usage of %s: [OPTION]... HOST...\n", os.Args[0])
6666
flag.PrintDefaults()

0 commit comments

Comments
 (0)