diff options
author | drh <> | 2024-10-28 17:27:15 +0000 |
---|---|---|
committer | drh <> | 2024-10-28 17:27:15 +0000 |
commit | bc4df6079c654b52786de49d7ad17ca30ac9822b (patch) | |
tree | 2a276b4f482923c97cbc80dfe864e632b9f8e387 /src/func.c | |
parent | fe5602ffd9d1f7fb6d05047b9065b3fe52218cca (diff) | |
download | sqlite-bc4df6079c654b52786de49d7ad17ca30ac9822b.tar.gz sqlite-bc4df6079c654b52786de49d7ad17ca30ac9822b.zip |
Remove the never-used and never-documented and long-ago deprecated
user-authentication feature option.
FossilOrigin-Name: 3a3f7bf4307c27e56546e51da06ecc9a262cdf155fda2dd359aa2326d207a147
Diffstat (limited to 'src/func.c')
-rw-r--r-- | src/func.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/func.c b/src/func.c index 2de16b8aa..419ce24c6 100644 --- a/src/func.c +++ b/src/func.c @@ -2678,9 +2678,6 @@ void sqlite3RegisterBuiltinFunctions(void){ SFUNCTION(load_extension, 1, 0, 0, loadExt ), SFUNCTION(load_extension, 2, 0, 0, loadExt ), #endif -#if SQLITE_USER_AUTHENTICATION - FUNCTION(sqlite_crypt, 2, 0, 0, sqlite3CryptFunc ), -#endif #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS DFUNCTION(sqlite_compileoption_used,1, 0, 0, compileoptionusedFunc ), DFUNCTION(sqlite_compileoption_get, 1, 0, 0, compileoptiongetFunc ), |