1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +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

@@ -18,7 +18,7 @@
** file simultaneously, or one process from reading the database while
** another is writing.
**
** @(#) $Id: pager.c,v 1.388 2007/09/10 06:12:04 danielk1977 Exp $
** @(#) $Id: pager.c,v 1.389 2007/09/17 06:06:39 danielk1977 Exp $
*/
#ifndef SQLITE_OMIT_DISKIO
#include "sqliteInt.h"
@@ -2054,7 +2054,7 @@ int sqlite3PagerOpen(
rc = sqlite3OsFullPathname(pVfs, zFilename, zPathname);
}
}else{
rc = sqlite3OsGetTempName(pVfs, zPathname);
rc = sqlite3OsGetTempname(pVfs, zPathname);
}
if( rc!=SQLITE_OK ){
sqlite3_free(zPathname);