From: drh <> Date: Tue, 23 Dec 2025 11:13:52 +0000 (+0000) Subject: Harmless typo fixes in shell.c X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8511ee1e191ec88a18aa52f1946702dd07670b80;p=thirdparty%2Fsqlite.git Harmless typo fixes in shell.c FossilOrigin-Name: 519877cdbde80071ac08f2e467ef8b9679816dc486cf6eb87ec2d9a38c819f88 --- diff --git a/manifest b/manifest index cb5bd4a29e..6c593c217b 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C API\sdocumentation\senhancements. -D 2025-12-22T17:06:37.974 +C Harmless\stypo\sfixes\sin\sshell.c +D 2025-12-23T11:13:52.772 F .fossil-settings/binary-glob 61195414528fb3ea9693577e1980230d78a1f8b0a54c78cf1b9b24d0a409ed6a x F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea @@ -737,7 +737,7 @@ F src/random.c 606b00941a1d7dd09c381d3279a058d771f406c5213c9932bbd93d5587be4b9c F src/resolve.c 47aa7fdc9ec4c19b103ac5e79d7887d30119b5675309facf5eed1118391c868b F src/rowset.c 8432130e6c344b3401a8874c3cb49fefe6873fec593294de077afea2dce5ec97 F src/select.c 85852256d860f3ba5be4a9edc1238e68dbea082a0167f31b7345c821ae45775d -F src/shell.c.in c4b775c664c339ac0351549a998b5f8816bf2496af5385e3937050c1fb5688fe +F src/shell.c.in 1659ae60799d820e5ea3cb89f8c59231f4a897ea497e49cf250dc4de739ac8d9 F src/sqlite.h.in b6599377f02ef9d545a8da48959213928b63291ad83ff65e5f3a72bf4fec595d F src/sqlite3.rc 015537e6ac1eec6c7050e17b616c2ffe6f70fca241835a84a4f0d5937383c479 F src/sqlite3ext.h 5d5330f5f8461f5ce74960436ddcfa53ecd09c2b8b23901e22ae38aec3243998 @@ -2139,7 +2139,7 @@ F tool/mkopcodec.tcl 33d20791e191df43209b77d37f0ff0904620b28465cca6990cf8d60da61 F tool/mkopcodeh.tcl 2b4e6967a670ef21bf53a164964c35c6163277d002a4c6f56fa231d68c88d023 F tool/mkopts.tcl 680f785fdb09729fd9ac50632413da4eadbdf9071535e3f26d03795828ab07fa F tool/mkpragmatab.tcl 3801ce32f8c55fe63a3b279f231fb26c2c1a2ea9a09d2dd599239d87a609acec -F tool/mkshellc.tcl a9a4d421a35b7117bb9d50e8e533c59a67f8a03957e2dd1282b92d27fb87e74c +F tool/mkshellc.tcl da6918b128e928a8f0d663519e14829153e59465bd5eb596442e99fa10a411b7 F tool/mksourceid.c 36aa8020014aed0836fd13c51d6dc9219b0df1761d6b5f58ff5b616211b079b9 F tool/mksqlite3c-noext.tcl 351c55256213154cabb051a3c870ef9f4487de905015141ae50dc7578a901b84 F tool/mksqlite3c.tcl 7a268139158e5deef27a370bc2f8db6ccf100c1ad7ac5e5b23743c0fd354f609 @@ -2187,8 +2187,8 @@ F tool/version-info.c 33d0390ef484b3b1cb685d59362be891ea162123cea181cb8e6d2cf6dd F tool/warnings-clang.sh bbf6a1e685e534c92ec2bfba5b1745f34fb6f0bc2a362850723a9ee87c1b31a7 F tool/warnings.sh d924598cf2f55a4ecbc2aeb055c10bd5f48114793e7ba25f9585435da29e7e98 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f -P 26f39ac806a5582fab1497e38a4ce68dad2b79df8c8aade43c4e21eed7576931 -R f6736e5abd17ab7be86d5f3036b5af5b +P 99ac94cb9a7a76312cda2d236dcc0c92b2ca269456daed06a1c2674c4f326867 +R e0eea0b874d68f5c645a4378a3638c4f U drh -Z 0370adbba2f0d4da1290ff5d241c9a94 +Z a89de18d25d59a2d05d6f387321e5657 # Remove this line to create a well-formed Fossil manifest. diff --git a/manifest.uuid b/manifest.uuid index 5a7c1f71bd..0cd4487b72 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -99ac94cb9a7a76312cda2d236dcc0c92b2ca269456daed06a1c2674c4f326867 +519877cdbde80071ac08f2e467ef8b9679816dc486cf6eb87ec2d9a38c819f88 diff --git a/src/shell.c.in b/src/shell.c.in index 710bca4394..7b42a86ecb 100644 --- a/src/shell.c.in +++ b/src/shell.c.in @@ -9,7 +9,7 @@ ** May you share freely, never taking more than you give. ** ************************************************************************* -** This file contains code to implement the "sqlite" command line +** This file contains code to implement the "sqlite3" command line ** utility for accessing SQLite databases. */ #if (defined(_WIN32) || defined(WIN32)) && !defined(_CRT_SECURE_NO_WARNINGS) diff --git a/tool/mkshellc.tcl b/tool/mkshellc.tcl index fc617f5a19..45452621bb 100644 --- a/tool/mkshellc.tcl +++ b/tool/mkshellc.tcl @@ -93,7 +93,7 @@ foreach fn [lsort [array names allSource]] { puts $out {** ** To modify this program, get a copy of the canonical SQLite source tree, ** edit the src/shell.c.in file and/or some of the other files that are -** listed above, then rerun the rerun "make shell.c". +** listed above, then rerun the command "make shell.c". */} seek $in 0 start puts $out "/************************* Begin src/shell.c.in ******************/"