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_win.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_win.c')
-rw-r--r-- | src/os_win.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_win.c b/src/os_win.c index 9887cc1a9..f140054f3 100644 --- a/src/os_win.c +++ b/src/os_win.c @@ -1267,7 +1267,7 @@ static int winAccess( ** Create a temporary file name in zBuf. zBuf must be big enough to ** hold at pVfs->mxPathname characters. */ -static int winGetTempName(sqlite3_vfs *pVfs, char *zBuf){ +static int winGetTempname(sqlite3_vfs *pVfs, char *zBuf){ static char zChars[] = "abcdefghijklmnopqrstuvwxyz" "ABCDEFGHIJKLMNOPQRSTUVWXYZ" @@ -1527,7 +1527,7 @@ sqlite3_vfs *sqlite3OsDefaultVfs(void){ winOpen, /* xOpen */ winDelete, /* xDelete */ winAccess, /* xAccess */ - winGetTempName, /* xGetTempName */ + winGetTempname, /* xGetTempName */ winFullPathname, /* xFullPathname */ winDlOpen, /* xDlOpen */ winDlError, /* xDlError */ |