Update lrstanley/girc dep (#1773)

This commit is contained in:
Wim
2022-03-25 22:01:02 +01:00
committed by GitHub
parent 5d9604cd15
commit 5f75f9886d
11 changed files with 21 additions and 30 deletions

View File

@@ -13,7 +13,7 @@ import (
const (
eventSpace byte = ' ' // Separator.
maxLength = 510 // Maximum length is 510 (2 for line endings).
maxLength int = 510 // Maximum length is 510 (2 for line endings).
)
// cutCRFunc is used to trim CR characters from prefixes/messages.
@@ -636,6 +636,4 @@ func (s *Source) writeTo(buffer *bytes.Buffer) {
buffer.WriteByte(prefixHost)
buffer.WriteString(s.Host)
}
return
}