mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-05 15:55:57 +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:
4
src/os.c
4
src/os.c
@@ -107,8 +107,8 @@ int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
|
||||
int sqlite3OsAccess(sqlite3_vfs *pVfs, const char *zPath, int flags){
|
||||
return pVfs->xAccess(pVfs, zPath, flags);
|
||||
}
|
||||
int sqlite3OsGetTempName(sqlite3_vfs *pVfs, char *zBufOut){
|
||||
return pVfs->xGetTempName(pVfs, zBufOut);
|
||||
int sqlite3OsGetTempname(sqlite3_vfs *pVfs, char *zBufOut){
|
||||
return pVfs->xGetTempname(pVfs, zBufOut);
|
||||
}
|
||||
int sqlite3OsFullPathname(sqlite3_vfs *pVfs, const char *zPath, char *zPathOut){
|
||||
return pVfs->xFullPathname(pVfs, zPath, zPathOut);
|
||||
|
Reference in New Issue
Block a user