]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a comment in os_unix.c. No code changes.
authordrh <drh@noemail.net>
Tue, 26 Mar 2013 18:48:11 +0000 (18:48 +0000)
committerdrh <drh@noemail.net>
Tue, 26 Mar 2013 18:48:11 +0000 (18:48 +0000)
FossilOrigin-Name: 72813b8ec924b91583c679668f7c4561dff82a02

manifest
manifest.uuid
src/os_unix.c

index a2e312e3a65c795ae0758119e0c3632eee9bcb3d..715e1994402e998dcd82d20deeff70fa46a1d0db 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Change\sthe\sname\sof\sthe\sPager.pFree\sfield\sto\sPager.pMmapFreelist.
-D 2013-03-26T14:36:11.815
+C Fix\sa\scomment\sin\sos_unix.c.\s\sNo\scode\schanges.
+D 2013-03-26T18:48:11.374
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in df3e48659d80e1b7765785d8d66c86b320f72cc7
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -160,7 +160,7 @@ F src/notify.c 976dd0f6171d4588e89e874fcc765e92914b6d30
 F src/os.c 809d0707cec693e1b9b376ab229271ad74c3d35d
 F src/os.h ae08bcc5f6ec6b339f4a2adf3931bb88cc14c3e4
 F src/os_common.h 92815ed65f805560b66166e3583470ff94478f04
-F src/os_unix.c 57306f1d2a2d783dae4365446b9f9a5da8958559
+F src/os_unix.c d6981218583748080374ed98a03f6a87e2bdc9e0
 F src/os_win.c e4f17ddf79f2a9373e33ed70565e765d65324589
 F src/pager.c 2b9980e87296812a6ce51121a3335550ae25e3ec
 F src/pager.h 5cb78b8e1adfd5451e600be7719f5a99d87ac3b1
@@ -1040,7 +1040,7 @@ F tool/vdbe-compress.tcl f12c884766bd14277f4fcedcae07078011717381
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
 F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac
-P 30c0a69363931a72d1c34e5be71646932398d172
-R 11ebc3388f5e3939639a27582f5015a5
+P 611bd824c24a60d298f28705de323fa2e813a308
+R 8f591838a5bc479ac7493be19f46439f
 U drh
-Z 2c5cf3d5be983a0c21f765acf3ca05b3
+Z be06b34348d93c4a77e7034db0a8802f
index cd71ef1d3b08067c3369de4bf93156a2e6e184a0..855425c986108bd0436651245bb7cb9b93454087 100644 (file)
@@ -1 +1 @@
-611bd824c24a60d298f28705de323fa2e813a308
\ No newline at end of file
+72813b8ec924b91583c679668f7c4561dff82a02
\ No newline at end of file
index 8a8516bcda19aca3afa09d5a86c72b294b04a8e0..f91f4c4e7a8f287b9050955fc9dc953da59e2b4a 100644 (file)
@@ -3107,8 +3107,8 @@ static int unixRead(
   );
 #endif
 
-  /* Deal with as much of this write request as possible by transfering
-  ** data to the memory mapping using memcpy().  */
+  /* Deal with as much of this read request as possible by transfering
+  ** data from the memory mapping using memcpy().  */
   if( offset<pFile->mmapSize ){
     if( offset+amt <= pFile->mmapSize ){
       memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], amt);