소스 검색

LIKE quoting should convert to string for SQL

tags/v0.1.0
Jeremy Latt 10 년 전
부모
커밋
abf00e22ec
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      irc/client_lookup_set.go

+ 2
- 2
irc/client_lookup_set.go 파일 보기

@@ -37,8 +37,8 @@ func ExpandUserHost(userhost Name) (expanded Name) {
37 37
 	return
38 38
 }
39 39
 
40
-func QuoteLike(userhost Name) Name {
41
-	return Name(likeQuoter.Replace(userhost.String()))
40
+func QuoteLike(userhost Name) string {
41
+	return likeQuoter.Replace(userhost.String())
42 42
 }
43 43
 
44 44
 type ClientLookupSet struct {

Loading…
취소
저장