aboutsummaryrefslogtreecommitdiff
path: root/ext/misc/rot13.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/misc/rot13.c')
-rw-r--r--ext/misc/rot13.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/rot13.c b/ext/misc/rot13.c
index 2e9dd21c6..8bde54700 100644
--- a/ext/misc/rot13.c
+++ b/ext/misc/rot13.c
@@ -105,7 +105,7 @@ int sqlite3_rot_init(
int rc = SQLITE_OK;
SQLITE_EXTENSION_INIT2(pApi);
(void)pzErrMsg; /* Unused parameter */
- rc = sqlite3_create_function(db, "rot13", 1, SQLITE_UTF8, 0,
+ rc = sqlite3_create_function(db, "rot13", 1, SQLITE_UTF8|SQLITE_INNOCUOUS, 0,
rot13func, 0, 0);
if( rc==SQLITE_OK ){
rc = sqlite3_create_collation(db, "rot13", SQLITE_UTF8, 0, rot13CollFunc);