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 38
38
#define FILE_HEADER_SZ 16
39
39
40
40
#ifndef CIPHER_VERSION
41
- #define CIPHER_VERSION "2.1.0 "
41
+ #define CIPHER_VERSION "2.1.1 "
42
42
#endif
43
43
44
44
#ifndef CIPHER
Original file line number Diff line number Diff line change @@ -601,7 +601,7 @@ void sqlcipher_codec_ctx_free(codec_ctx **iCtx) {
601
601
}
602
602
603
603
/** 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 ) {
605
605
p [0 ] = (u8 )v ;
606
606
p [1 ] = (u8 )(v >>8 );
607
607
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 {
1392
1392
execsql {
1393
1393
PRAGMA cipher_version;
1394
1394
}
1395
- } {2.1.0 }
1395
+ } {2.1.1 }
1396
1396
db close
1397
1397
file delete -force test.db
1398
1398
You can’t perform that action at this time.
0 commit comments