| Index: third_party/sqlite/src/src/random.c
|
| diff --git a/third_party/sqlite/src/src/random.c b/third_party/sqlite/src/src/random.c
|
| index 179d01bef247d46245804d4bce88e427feedcfe5..d4ae77c4355e8248fa8bab8548ea5f7962622b71 100644
|
| --- a/third_party/sqlite/src/src/random.c
|
| +++ b/third_party/sqlite/src/src/random.c
|
| @@ -106,7 +106,7 @@ void sqlite3_randomness(int N, void *pBuf){
|
| sqlite3_mutex_leave(mutex);
|
| }
|
|
|
| -#ifndef SQLITE_OMIT_BUILTIN_TEST
|
| +#ifndef SQLITE_UNTESTABLE
|
| /*
|
| ** For testing purposes, we sometimes want to preserve the state of
|
| ** PRNG and restore the PRNG to its saved state at a later time, or
|
| @@ -131,4 +131,4 @@ void sqlite3PrngRestoreState(void){
|
| sizeof(sqlite3Prng)
|
| );
|
| }
|
| -#endif /* SQLITE_OMIT_BUILTIN_TEST */
|
| +#endif /* SQLITE_UNTESTABLE */
|
|
|