diff --git a/sqlite3_opt_userauth_omit.go b/sqlite3_opt_userauth_omit.go index f16b438..806a651 100644 --- a/sqlite3_opt_userauth_omit.go +++ b/sqlite3_opt_userauth_omit.go @@ -132,7 +132,7 @@ func (c *SQLiteConn) authUserDelete(username string) int { // AuthEnabled checks if the database is protected by user authentication func (c *SQLiteConn) AuthEnabled() (exists bool) { - _ := c.authEnabled() + c.authEnabled() return false }