From: shane Date: Mon, 10 Nov 2008 17:08:49 +0000 (+0000) Subject: Fixed typos; Consistent use of Mac OS X name; (CVS 5870) X-Git-Tag: version-3.6.10~307 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ba429a61c819d958c63aa6a82eb49a845277314;p=thirdparty%2Fsqlite.git Fixed typos; Consistent use of Mac OS X name; (CVS 5870) FossilOrigin-Name: dfc94743378e576ecc5c567ae4020bf9594a3fb9 --- diff --git a/manifest b/manifest index 8d5283fe89..88fdfdd156 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Prevent\sbuffer\soverruns\swhen\sconverting\smalformed\sUTF16\sto\sUTF8.\s\sTicket\s#3482.\s(CVS\s5869) -D 2008-11-07T03:29:34 +C Fixed\stypos;\sConsistent\suse\sof\sMac\sOS\sX\sname;\s(CVS\s5870) +D 2008-11-10T17:08:49 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0 F Makefile.in 48172b58e444a9725ec482e0c022a564749acab4 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 @@ -150,7 +150,7 @@ F src/random.c a87afbd598aa877e23ac676ee92fd8ee5c786a51 F src/resolve.c 266bb03d2b456fe68f5df2dd5687e7e88ff8088d F src/select.c 0d79c6c0b48b9d67a443853fd6add8c2967ba870 F src/shell.c d83b578a8ccdd3e0e7fef4388a0887ce9f810967 -F src/sqlite.h.in e5c0dc85b1340f566d977263d4cca7ca32183c34 +F src/sqlite.h.in e3bbc8a9ca3da538e8670ba8341ebef56181bee5 F src/sqlite3ext.h 1db7d63ab5de4b3e6b83dd03d1a4e64fef6d2a17 F src/sqliteInt.h e32c2dbd6d2e53c2a4d137ce977313a38df38f8a F src/sqliteLimit.h f435e728c6b620ef7312814d660a81f9356eb5c8 @@ -654,7 +654,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e -P cf9d1d933f6b6713018928d9a7680ae63e8edcd0 -R 9bf7e89e608c1daef418fcdb0945323f -U drh -Z 70101d3438f4b5e0c424b1380b75c8cb +P 3f657e88767f60d305dd6151e7aa54363341d052 +R bf365330fc5e332148151c6b5e77140a +U shane +Z b9b4cb42d1c0d5e13f65a9208e9214a2 diff --git a/manifest.uuid b/manifest.uuid index e19ad60d03..8918714460 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -3f657e88767f60d305dd6151e7aa54363341d052 \ No newline at end of file +dfc94743378e576ecc5c567ae4020bf9594a3fb9 \ No newline at end of file diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 2af61fb4c2..df02b7c452 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -30,7 +30,7 @@ ** the version number) and changes its name to "sqlite3.h" as ** part of the build process. ** -** @(#) $Id: sqlite.h.in,v 1.409 2008/11/07 00:06:18 drh Exp $ +** @(#) $Id: sqlite.h.in,v 1.410 2008/11/10 17:08:49 shane Exp $ */ #ifndef _SQLITE3_H_ #define _SQLITE3_H_ @@ -587,7 +587,7 @@ int sqlite3_exec( ** sync operation only needs to flush data to mass storage. Inode ** information need not be flushed. The SQLITE_SYNC_NORMAL flag means ** to use normal fsync() semantics. The SQLITE_SYNC_FULL flag means -** to use Mac OS-X style fullsync instead of fsync(). +** to use Mac OS X style fullsync instead of fsync(). */ #define SQLITE_SYNC_NORMAL 0x00002 #define SQLITE_SYNC_FULL 0x00003 @@ -619,7 +619,7 @@ struct sqlite3_file { ** ** The flags argument to xSync may be one of [SQLITE_SYNC_NORMAL] or ** [SQLITE_SYNC_FULL]. The first choice is the normal fsync(). -** The second choice is a Mac OS-X style fullsync. The [SQLITE_SYNC_DATAONLY] +** The second choice is a Mac OS X style fullsync. The [SQLITE_SYNC_DATAONLY] ** flag may be ORed in to indicate that only the data of the file ** and not its inode needs to be synced. ** @@ -4151,7 +4151,7 @@ int sqlite3_create_function16( ** backwards compatibility with older code, these functions continue ** to be supported. However, new applications should avoid ** the use of these functions. To help encourage people to avoid -** using these functions, we are not going to tell you want they do. +** using these functions, we are not going to tell you what they do. */ #ifndef SQLITE_OMIT_DEPRECATED SQLITE_DEPRECATED int sqlite3_aggregate_count(sqlite3_context*);