aboutsummaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2007-03-30 11:29:32 +0000
committerdrh <drh@noemail.net>2007-03-30 11:29:32 +0000
commita16313e5055d9b8ba884941be6db2e19b5c074a7 (patch)
treec5d7232659a1756ecf2b8318e26aa4b5e3e7829d /src/os_unix.c
parent3c024d6973fde047893a5c0937ad4248ca484fee (diff)
downloadsqlite-a16313e5055d9b8ba884941be6db2e19b5c074a7.tar.gz
sqlite-a16313e5055d9b8ba884941be6db2e19b5c074a7.zip
Move the sqlite3_temp_directory global variable out of the OS porting layer
and into main.c so that it is more accessible to non-standard OS porting layers. (CVS 3759) FossilOrigin-Name: 23653f7aab6609f69948a7366bef9ebd0fd4d0b1
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 19eb99fec..ee7300a24 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -932,15 +932,6 @@ static int unixOpenDirectory(
}
/*
-** If the following global variable points to a string which is the
-** name of a directory, then that directory will be used to store
-** temporary files.
-**
-** See also the "PRAGMA temp_store_directory" SQL command.
-*/
-char *sqlite3_temp_directory = 0;
-
-/*
** Create a temporary file name in zBuf. zBuf must be big enough to
** hold at least SQLITE_TEMPNAME_SIZE characters.
*/