Skip to content

Commit

Permalink
update null vfs name
Browse files Browse the repository at this point in the history
  • Loading branch information
kroggen committed Mar 6, 2020
1 parent 3a8c748 commit a5a8e89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sqlite3.c
Expand Up @@ -159802,7 +159802,7 @@ sqlite3_vfs *sqlite3_nullvfs(void){
sizeof(NullFile), /* szOsFile */
NULLVFS_MAXPATHNAME, /* mxPathname */
0, /* pNext */
"null", /* zName */
"nullvfs", /* zName */
0, /* pAppData */
nullOpen, /* xOpen */
nullDelete, /* xDelete */
Expand Down Expand Up @@ -162675,7 +162675,7 @@ SQLITE_PRIVATE int sqlite3ParseUri(
if( zActive && strcmp(zActive,"on")==0 ){
BRANCHTRACE("registering null VFS");
rc = sqlite3_vfs_register(sqlite3_nullvfs(), 0);
zVfs = "null";
zVfs = "nullvfs";
}
}
BRANCHTRACE("VFS: %s", zVfs);
Expand Down

0 comments on commit a5a8e89

Please sign in to comment.