]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Give file scope to the sqlite3Apis constant. Ticket #3024. (CVS 4980)
authordrh <drh@noemail.net>
Thu, 10 Apr 2008 16:01:10 +0000 (16:01 +0000)
committerdrh <drh@noemail.net>
Thu, 10 Apr 2008 16:01:10 +0000 (16:01 +0000)
FossilOrigin-Name: 30c5086068071385c13f02b3d33511127968335b

manifest
manifest.uuid
src/loadext.c

index 87516da4556225f015a13e94dfd8a16b300e776d..f7e931c7b961abd041047572acca638d09fdb8ec 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Verify\sthat\sa\sRAISE(ROLLBACK,...)\sworks\slike\sRAISE(FAIL,...)\swhen\snot\ninside\sa\stransaction.\s\sTicket\s#3035.\s(CVS\s4979)
-D 2008-04-10T15:12:46
+C Give\sfile\sscope\sto\sthe\ssqlite3Apis\sconstant.\s\sTicket\s#3024.\s(CVS\s4980)
+D 2008-04-10T16:01:10
 F Makefile.arm-wince-mingw32ce-gcc ac5f7b2cef0cd850d6f755ba6ee4ab961b1fadf7
 F Makefile.in b861627d91df5ee422c54237aa38296954dc0151
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -103,7 +103,7 @@ F src/hash.h 031cd9f915aff27e12262cb9eb570ac1b8326b53
 F src/insert.c 6974a1d02f2dcd616d00eef4996d4872495fad0f
 F src/journal.c 807bed7a158979ac8d63953e1774e8d85bff65e2
 F src/legacy.c 8267890e6a0a71f13b680794520999c642299081
-F src/loadext.c f26b22f7c84153c9d5dbd7c240848823c6e6b6dc
+F src/loadext.c 5c20a5afeb154e68d62ed6d9c634add1b21387fd
 F src/main.c afcd42ba14d144034ed0e285bee100594f00b8fa
 F src/malloc.c 12c1ae98ef1eff34b13c9eb526e0b7b479e1e820
 F src/md5.c c5fdfa5c2593eaee2e32a5ce6c6927c986eaf217
@@ -626,7 +626,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
 F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
-P d11e8e307af906db75ae7aede790464fabd06422
-R 84e0c1267c062fed3903cc11136fede9
+P 87dc82d0436c6c3a9bd67544d52911012a5a7c66
+R d1560cb6802568ecbb9c997cf2f0227b
 U drh
-Z 9fd0b62dc6e6ae3612464ae727bab5b7
+Z 126a8ff46803faad6d7f0ea171a8dc26
index 2f4a15e9669bf8dc0215f58d74ce9774473d2d29..77542c94f1d6b4f84177ca2ad30ae8c24e6ac098 100644 (file)
@@ -1 +1 @@
-87dc82d0436c6c3a9bd67544d52911012a5a7c66
\ No newline at end of file
+30c5086068071385c13f02b3d33511127968335b
\ No newline at end of file
index 471f441fcab43bc7dfd36d1dc405f415ec32d006..d42bc4e03633cf05bee0f66fb3e22948a0c0c0b3 100644 (file)
 ** also check to make sure that the pointer to the function is
 ** not NULL before calling it.
 */
-const sqlite3_api_routines sqlite3Apis = {
+static const sqlite3_api_routines sqlite3Apis = {
   sqlite3_aggregate_context,
   sqlite3_aggregate_count,
   sqlite3_bind_blob,
@@ -445,7 +445,7 @@ int sqlite3_enable_load_extension(sqlite3 *db, int onoff){
 ** dummy pointer.
 */
 #ifdef SQLITE_OMIT_LOAD_EXTENSION
-const sqlite3_api_routines sqlite3Apis = { 0 };
+static const sqlite3_api_routines sqlite3Apis = { 0 };
 #endif