1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-24 08:21:29 +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

@@ -163,7 +163,7 @@ static int tmpDeviceCharacteristics(sqlite3_file*);
static int fsOpen(sqlite3_vfs*, const char *, sqlite3_file*, int , int *);
static int fsDelete(sqlite3_vfs*, const char *zName, int syncDir);
static int fsAccess(sqlite3_vfs*, const char *zName, int flags);
static int fsGetTempName(sqlite3_vfs*, char *zOut);
static int fsGetTempname(sqlite3_vfs*, char *zOut);
static int fsFullPathname(sqlite3_vfs*, const char *zName, char *zOut);
static void *fsDlOpen(sqlite3_vfs*, const char *zFilename);
static void fsDlError(sqlite3_vfs*, int nByte, char *zErrMsg);
@@ -192,7 +192,7 @@ static fs_vfs_t fs_vfs = {
fsOpen, /* xOpen */
fsDelete, /* xDelete */
fsAccess, /* xAccess */
fsGetTempName, /* xGetTempName */
fsGetTempname, /* xGetTempName */
fsFullPathname, /* xFullPathname */
fsDlOpen, /* xDlOpen */
fsDlError, /* xDlError */
@@ -726,9 +726,9 @@ static int fsAccess(sqlite3_vfs *pVfs, const char *zPath, int flags){
** temporary file. zBufOut is guaranteed to point to a buffer of
** at least (FS_MAX_PATHNAME+1) bytes.
*/
static int fsGetTempName(sqlite3_vfs *pVfs, char *zBufOut){
static int fsGetTempname(sqlite3_vfs *pVfs, char *zBufOut){
sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent;
return pParent->xGetTempName(pParent, zBufOut);
return pParent->xGetTempname(pParent, zBufOut);
}
/*