From: mistachkin Date: Thu, 19 Mar 2015 14:48:38 +0000 (+0000) Subject: Fix typo in shell error message. X-Git-Tag: version-3.8.9~64 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ba132c772843f484fcc7b5ccb182e1a6cd51eee0;p=thirdparty%2Fsqlite.git Fix typo in shell error message. FossilOrigin-Name: 775a02d597549567a0634483525664643064b3fd --- diff --git a/manifest b/manifest index 38d28bca9b..ed4e0355ec 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Fix\sa\sbug\sin\serror\shandling\sin\sthe\s".trace"\scommand\sof\sthe\scommand-line\sshell. -D 2015-03-19T13:30:41.360 +C Fix\stypo\sin\sshell\serror\smessage. +D 2015-03-19T14:48:38.750 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 88a3e6261286db378fdffa1124cad11b3c05f5bb F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -231,7 +231,7 @@ F src/random.c ba2679f80ec82c4190062d756f22d0c358180696 F src/resolve.c f4d79e31ffa5820c2e3d1740baa5e9b190425f2b F src/rowset.c eccf6af6d620aaa4579bd3b72c1b6395d9e9fa1e F src/select.c 94e016b6733b1d39a2f4c8d431155b4c2897d907 -F src/shell.c 3e8fc22bc1cd63fe595c84a880bd6184deb6c87b +F src/shell.c d1ecce877f899abc97cabdf6a0b8323b8c5a0b69 F src/sqlite.h.in 2d48e05677d0f9b06b7757662eef3cebea02d837 F src/sqlite3.rc 992c9f5fb8285ae285d6be28240a7e8d3a7f2bad F src/sqlite3ext.h 17d487c3c91b0b8c584a32fbeb393f6f795eea7d @@ -1246,7 +1246,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f -P 49ea2cded4a76596f85419c820cdaf4a1751d7ac -R df8b9299e9511ef4e1117da2a3444343 -U drh -Z 8cda5daec6a5d1c3721d0a7774b9a78e +P 6a48b5d794e891fdd167547c76835d677eb5e31d +R 979a11eba248fa38fa514a9555cd703f +U mistachkin +Z dce5b986584646110a469a810e885660 diff --git a/manifest.uuid b/manifest.uuid index 52200038fd..8875e55307 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -6a48b5d794e891fdd167547c76835d677eb5e31d \ No newline at end of file +775a02d597549567a0634483525664643064b3fd \ No newline at end of file diff --git a/src/shell.c b/src/shell.c index 436c23d47b..752106fcaf 100644 --- a/src/shell.c +++ b/src/shell.c @@ -2955,7 +2955,7 @@ static int do_meta_command(char *zLine, ShellState *p){ sCtx.nLine = 1; if( sCtx.zFile[0]=='|' ){ #ifdef SQLITE_OMIT_POPEN - fprintf(stderr, "Error: pipes are not supporte in this OS\n"); + fprintf(stderr, "Error: pipes are not supported in this OS\n"); return 1; #else sCtx.in = popen(sCtx.zFile+1, "r");