1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

Fix typo in the CSV extension.

FossilOrigin-Name: b4889588246c33374ff3758e21ccc4ce246380b6
This commit is contained in:
mistachkin
2016-11-09 01:46:13 +00:00
parent 088c086b14
commit 58282f68d8
3 changed files with 9 additions and 9 deletions

View File

@ -402,7 +402,7 @@ static int csv_boolean(const char *z){
if( sqlite3_stricmp("yes",z)==0
|| sqlite3_stricmp("on",z)==0
|| sqlite3_stricmp("true",z)==0
|| (z[0]=='1' && z[0]==0)
|| (z[0]=='1' && z[1]==0)
){
return 1;
}