10000 Merge branch 'prerelease' · PHPDOTSQL/sqlcipher@c19c72f · GitHub
[go: up one dir, main page]

Skip to content

Commit c19c72f

Browse files
committed
Merge branch 'prerelease'
2 parents 2e2440c + cf9fb1e commit c19c72f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/crypto.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
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

src/crypto_impl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

test/crypto.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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}
13961396
db close
13971397
file delete -force test.db
13981398

0 commit comments

Comments
 (0)
0