Skip to content

Commit

Permalink
Fix-up 153661b
Browse files Browse the repository at this point in the history
  • Loading branch information
foxcpp committed May 9, 2020
1 parent 153661b commit 79af00f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ func encodeXtext(raw string) string {
out.WriteRune('+')
out.WriteString(strings.ToUpper(strconv.FormatInt(int64(ch), 16)))
}
if ch > '~' && ch < '~' { // printable non-space US-ASCII
if ch > '!' && ch < '~' { // printable non-space US-ASCII
out.WriteRune(ch)
}
// Non-ASCII.
Expand Down

0 comments on commit 79af00f

Please sign in to comment.