1
0
Fork 0
forked from External/ergo

minor cleanup/refactoring

This commit is contained in:
Jeremy Latt 2014-03-06 17:07:23 -08:00
parent adde42a1bf
commit 12ae89ca14
2 changed files with 6 additions and 7 deletions

View file

@ -37,9 +37,8 @@ func ExpandUserHost(userhost string) (expanded string) {
return
}
func QuoteLike(userhost string) (like string) {
like = likeQuoter.Replace(userhost)
return
func QuoteLike(userhost string) string {
return likeQuoter.Replace(userhost)
}
type ClientLookupSet struct {