Skip to content

Commit 2e165e0

Browse files
eraytufanmattn
authored andcommitted
fix syntax error
1 parent e63a0c3 commit 2e165e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sqlite3_opt_userauth.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ const (
2727
)
2828

2929
var (
30-
ErrUnauthorized = errors.New("SQLITE_AUTH: Unauthorized")
31-
ErrAdminRequired = errors.New("SQLITE_AUTH: Unauthorized; Admin Privileges Required")
32-
errUserAuthNoLongerSupported = errors.New("sqlite3: the sqlite_userauth tag is no longer supported as the userauth extension is no longer supported by the SQLite authors, see https://github.com/mattn/go-sqlite3/issues/1341").
30+
ErrUnauthorized = errors.New("SQLITE_AUTH: Unauthorized")
31+
ErrAdminRequired = errors.New("SQLITE_AUTH: Unauthorized; Admin Privileges Required")
32+
errUserAuthNoLongerSupported = errors.New("sqlite3: the sqlite_userauth tag is no longer supported as the userauth extension is no longer supported by the SQLite authors, see https://github.com/mattn/go-sqlite3/issues/1341")
3333
)
3434

3535
// Authenticate will perform an authentication of the provided username

0 commit comments

Comments
 (0)