summaryrefslogtreecommitdiffstats
path: root/lib/libsqlite3/src/global.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libsqlite3/src/global.c')
-rw-r--r--lib/libsqlite3/src/global.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/libsqlite3/src/global.c b/lib/libsqlite3/src/global.c
index 2c14b58abd9..e769eb425f0 100644
--- a/lib/libsqlite3/src/global.c
+++ b/lib/libsqlite3/src/global.c
@@ -10,7 +10,7 @@
**
*************************************************************************
**
-** This file contains definitions of global variables and contants.
+** This file contains definitions of global variables and constants.
*/
#include "sqliteInt.h"
@@ -129,6 +129,13 @@ const unsigned char sqlite3CtypeMap[256] = {
};
#endif
+/* EVIDENCE-OF: R-02982-34736 In order to maintain full backwards
+** compatibility for legacy applications, the URI filename capability is
+** disabled by default.
+**
+** EVIDENCE-OF: R-38799-08373 URI filenames can be enabled or disabled
+** using the SQLITE_USE_URI=1 or SQLITE_USE_URI=0 compile-time options.
+*/
#ifndef SQLITE_USE_URI
# define SQLITE_USE_URI 0
#endif