From: drh Date: Tue, 27 Mar 2007 21:47:06 +0000 (+0000) Subject: Fix the prototype of the CodecAttach function in attach.c. (CVS 3731) X-Git-Tag: version-3.6.10~2439 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3262cb24ff41271961a4bebf455301ba039e2571;p=thirdparty%2Fsqlite.git Fix the prototype of the CodecAttach function in attach.c. (CVS 3731) FossilOrigin-Name: 902413e81b1ae8bee09987c798622a55ab2a1504 --- diff --git a/manifest b/manifest index 1162d785fb..6683787ece 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Remove\sa\sc++\scomment\sin\spager.c.\s(CVS\s3730) -D 2007-03-27T17:37:32 +C Fix\sthe\sprototype\sof\sthe\sCodecAttach\sfunction\sin\sattach.c.\s(CVS\s3731) +D 2007-03-27T21:47:07 F Makefile.in 1fe3d0b46e40fd684e1e61f8e8056cefed16de9f F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 @@ -56,7 +56,7 @@ F sqlite3.def a96c1d0d39362b763d2ddba220a32da41a15c4b4 F sqlite3.pc.in 985b9bf34192a549d7d370e0f0b6b34a4f61369a F src/alter.c 2c79ec40f65e33deaf90ca493422c74586e481a3 F src/analyze.c 7d2b7ab9a9c2fd6e55700f69064dfdd3e36d7a8a -F src/attach.c 12fa4f4c46a42659feabd2e33affccd3dddad18d +F src/attach.c a16ada4a4654a0d126b8223ec9494ebb81bc5c3c F src/auth.c 902f4722661c796b97f007d9606bd7529c02597f F src/btree.c 27e62fc50dba2ac0b4210402804ac12321ad8e59 F src/btree.h 066444ee25bd6e6accb997bfd2cf5ace14dbcd00 @@ -442,7 +442,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513 -P b24a6e7b024c8b9a0b6fd15bd8f247e458781ca2 -R 85a141c655cfa77f865d002976eceebf -U danielk1977 -Z ca732204acf796445632fba67084a5c5 +P e4452e8aede9282feaeeac19d0cdf82b01c3cc19 +R e81caee930d4fa63d67e784778509967 +U drh +Z 92c8d3d934954906a95fdeb376851102 diff --git a/manifest.uuid b/manifest.uuid index 1b41c960da..b230b7f674 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -e4452e8aede9282feaeeac19d0cdf82b01c3cc19 \ No newline at end of file +902413e81b1ae8bee09987c798622a55ab2a1504 \ No newline at end of file diff --git a/src/attach.c b/src/attach.c index 70aced0f31..41bf90b33b 100644 --- a/src/attach.c +++ b/src/attach.c @@ -11,7 +11,7 @@ ************************************************************************* ** This file contains code used to implement the ATTACH and DETACH commands. ** -** $Id: attach.c,v 1.56 2007/03/27 14:44:51 drh Exp $ +** $Id: attach.c,v 1.57 2007/03/27 21:47:07 drh Exp $ */ #include "sqliteInt.h" @@ -141,7 +141,7 @@ static void attachFunc( #if SQLITE_HAS_CODEC { - extern int sqlite3CodecAttach(sqlite3*, int, void*, int); + extern int sqlite3CodecAttach(sqlite3*, int, const void*, int); extern void sqlite3CodecGetKey(sqlite3*, int, void**, int*); int nKey; char *zKey;