Skip to content

Commit

Permalink
修复一处QUIC证书判断问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Kisesy committed Jan 6, 2018
1 parent a1fde0c commit f8620ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quic.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func testQuic(ip string, config *ScanConfig, record *ScanRecord) bool {
return false
}
pcs := cs.PeerCertificates
if pcs == nil && len(pcs) < 2 {
if len(pcs) < 2 {
return false
}

Expand Down

0 comments on commit f8620ba

Please sign in to comment.