diff options
author | danielk1977 <danielk1977@noemail.net> | 2007-09-17 06:06:39 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2007-09-17 06:06:39 +0000 |
commit | 76ee37f9bb393e45eaf724921853668960b34294 (patch) | |
tree | 30de3c7d47f8765e9018edc7c5deb6b450a111bc /src/os_unix.c | |
parent | 6ac164d708ecd3125b6304bd482a48c1c1bda4f2 (diff) | |
download | sqlite-76ee37f9bb393e45eaf724921853668960b34294.tar.gz sqlite-76ee37f9bb393e45eaf724921853668960b34294.zip |
Change the names of xGetTempName and sqlite3OsGetTempName to xGetTempname. To be consistent with xFullPathname and sqlite3OsFullPathname. (CVS 4432)
FossilOrigin-Name: ad3687b16e9420d8bbaa3a645aaf803813b36061
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 498b11965..30e2cbb26 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -2474,7 +2474,7 @@ static int unixAccess(sqlite3_vfs *pVfs, const char *zPath, int flags){ ** by the calling process and must be big enough to hold at least ** pVfs->mxPathname bytes. */ -static int unixGetTempName(sqlite3_vfs *pVfs, char *zBuf){ +static int unixGetTempname(sqlite3_vfs *pVfs, char *zBuf){ static const char *azDirs[] = { 0, "/var/tmp", @@ -2726,7 +2726,7 @@ sqlite3_vfs *sqlite3OsDefaultVfs(void){ unixOpen, /* xOpen */ unixDelete, /* xDelete */ unixAccess, /* xAccess */ - unixGetTempName, /* xGetTempName */ + unixGetTempname, /* xGetTempName */ unixFullPathname, /* xFullPathname */ unixDlOpen, /* xDlOpen */ unixDlError, /* xDlError */ |