File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3838#define FILE_HEADER_SZ 16
3939
4040#ifndef CIPHER_VERSION
41- #define CIPHER_VERSION "2.1.0 "
41+ #define CIPHER_VERSION "2.1.1 "
4242#endif
4343
4444#ifndef CIPHER
Original file line number Diff line number Diff line change @@ -601,7 +601,7 @@ void sqlcipher_codec_ctx_free(codec_ctx **iCtx) {
601601}
602602
603603/** convert a 32bit unsigned integer to little endian byte ordering */
604- static inline void sqlcipher_put4byte_le (unsigned char * p , u32 v ) {
604+ static void sqlcipher_put4byte_le (unsigned char * p , u32 v ) {
605605 p [0 ] = (u8 )v ;
606606 p [1 ] = (u8 )(v >>8 );
607607 p [2 ] = (u8 )(v >>16 );
Original file line number Diff line number Diff line change @@ -1392,7 +1392,7 @@ do_test verify-pragma-cipher-version {
13921392 execsql {
13931393 PRAGMA cipher_version;
13941394 }
1395- } {2.1.0 }
1395+ } {2.1.1 }
13961396db close
13971397file delete -force test.db
13981398
You can’t perform that action at this time.
0 commit comments