Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/quic/node_quic_crypto.cc
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ bool CheckCertNames(
return false;
}

if (name_parts[0].find("*") == std::string::npos ||
if (name_parts[0].find('*') == std::string::npos ||
name_parts[0].find("xn--") != std::string::npos) {
return host_parts[0] == name_parts[0];
}
Expand Down
2 changes: 1 addition & 1 deletion src/quic/node_quic_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class StatsBase {
// A StatsBase instance may have one of three histogram
// instances. One that records rate of data flow, one
// that records size of data chunk, and one that records
// rate of data ackwowledgement. These may be used in
// rate of data acknowledgement. These may be used in
// slightly different ways of different StatsBase
// instances or may be turned off entirely.
enum HistogramOptions {
Expand Down