1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Change the names of xGetTempName and sqlite3OsGetTempName to xGetTempname. To be consistent with xFullPathname and sqlite3OsFullPathname. (CVS 4432)

FossilOrigin-Name: ad3687b16e9420d8bbaa3a645aaf803813b36061
This commit is contained in:
danielk1977
2007-09-17 06:06:39 +00:00
parent 6ac164d708
commit 76ee37f9bb
11 changed files with 38 additions and 38 deletions

View File

@@ -990,9 +990,9 @@ static int asyncAccess(sqlite3_vfs *pAsyncVfs, const char *zName, int flags){
return ret;
}
static int asyncGetTempName(sqlite3_vfs *pAsyncVfs, char *zBufOut){
static int asyncGetTempname(sqlite3_vfs *pAsyncVfs, char *zBufOut){
sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData;
return pVfs->xGetTempName(pVfs, zBufOut);
return pVfs->xGetTempname(pVfs, zBufOut);
}
/*
@@ -1093,7 +1093,7 @@ static sqlite3_vfs async_vfs = {
asyncOpen, /* xOpen */
asyncDelete, /* xDelete */
asyncAccess, /* xAccess */
asyncGetTempName, /* xGetTempName */
asyncGetTempname, /* xGetTempName */
asyncFullPathname, /* xFullPathname */
asyncDlOpen, /* xDlOpen */
asyncDlError, /* xDlError */