]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
fix typo in comment (CVS 4438)
authorrse <rse@noemail.net>
Thu, 20 Sep 2007 11:32:18 +0000 (11:32 +0000)
committerrse <rse@noemail.net>
Thu, 20 Sep 2007 11:32:18 +0000 (11:32 +0000)
FossilOrigin-Name: c2ac43a4ef674c0202d5bd1ec57fc25c89d0554e

manifest
manifest.uuid
src/vtab.c

index befeae64a7da4ff467ca421fb1297d2bb3794f2c..917b5c85d1d8875f38e0483142de585f429c70a9 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fixes\sfor\suninitialized\svariables.\s\sTickets\s#2658\sand\s#2659.\s(CVS\s4437)
-D 2007-09-20T10:02:54
+C fix\stypo\sin\scomment\s(CVS\s4438)
+D 2007-09-20T11:32:18
 F Makefile.in cbfb898945536a8f9ea8b897e1586dd1fdbcc5db
 F Makefile.linux-gcc 65241babba6faf1152bf86574477baab19190499
 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -172,7 +172,7 @@ F src/vdbeaux.c e35c851e3c1d18a7b90dbe35ae5e0fc9419a4ed4
 F src/vdbeblob.c 82f51cdf9b0c0af729732fde48c824e498c0a1ca
 F src/vdbefifo.c 334c838c8f42d61a94813d136019ee566b5dc2f6
 F src/vdbemem.c 246d434fa60bde6553490eb686adfd86adcd6712
-F src/vtab.c 243f41bd94a710e8d1eb30f0abfe6d0889538e71
+F src/vtab.c f819d55ef638d45e09ce00009d435da8bf16f528
 F src/where.c 44042c8b9d0d054cc318c3a0df052215ebf49d2d
 F tclinstaller.tcl 4356d9d94d2b5ed5e68f9f0c80c4df3048dd7617
 F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2
@@ -580,7 +580,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
 F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
-P 91831ff2922666b39d8f4ba448982c6763030633
-R b3e2e386d4621bf8e0cec5124924d72e
-U drh
-Z bfc1344953fd378c8e37f74827865187
+P 27fe1288336665c4d47c5d7ddcbeacc451ec4a9d
+R 64f1097aed00a79a87dd233f0bca675a
+U rse
+Z 6f6d5df99d60b533b39077f06f479aff
index 7a7b53037efde143f9a679ea6a2a38b59c72a294..0e7eb3e7050b89779aea1bafc382773aa59855f0 100644 (file)
@@ -1 +1 @@
-27fe1288336665c4d47c5d7ddcbeacc451ec4a9d
\ No newline at end of file
+c2ac43a4ef674c0202d5bd1ec57fc25c89d0554e
\ No newline at end of file
index bd7ba4e594fccfc65674c219dc5c018e18b845a3..9ca317b7ea0192178d7a680c572bbe31a9360adf 100644 (file)
@@ -11,7 +11,7 @@
 *************************************************************************
 ** This file contains code used to help implement virtual tables.
 **
-** $Id: vtab.c,v 1.58 2007/09/20 10:02:54 drh Exp $
+** $Id: vtab.c,v 1.59 2007/09/20 11:32:18 rse Exp $
 */
 #ifndef SQLITE_OMIT_VIRTUALTABLE
 #include "sqliteInt.h"
@@ -765,7 +765,7 @@ FuncDef *sqlite3VtabOverloadFunction(
   pMod = (sqlite3_module *)pVtab->pModule;
   if( pMod->xFindFunction==0 ) return pDef;
  
-  /* Call the xFuncFunction method on the virtual table implementation
+  /* Call the xFindFunction method on the virtual table implementation
   ** to see if the implementation wants to overload this function 
   */
   zLowerName = sqlite3DbStrDup(db, pDef->zName);