| Index: third_party/sqlite/src/src/os_unix.c
|
| diff --git a/third_party/sqlite/src/src/os_unix.c b/third_party/sqlite/src/src/os_unix.c
|
| index 804c588e45e1b914a753a60ff2f76959d42213bc..77ffd8ac0d9a50c0328d03aff3dca52ccd5bb52f 100644
|
| --- a/third_party/sqlite/src/src/os_unix.c
|
| +++ b/third_party/sqlite/src/src/os_unix.c
|
| @@ -4506,7 +4506,7 @@ int fillInUnixFile(
|
| OSTRACE(("OPEN %-3d %s\n", h, zFilename));
|
| pNew->h = h;
|
| pNew->zPath = zFilename;
|
| - if( memcmp(pVfs->zName,"unix-excl",10)==0 ){
|
| + if( strcmp(pVfs->zName,"unix-excl")==0 ){
|
| pNew->ctrlFlags = UNIXFILE_EXCL;
|
| }else{
|
| pNew->ctrlFlags = 0;
|
|
|