Check-in [cf84ce2d8c]
Not logged in
Overview

SHA1 Hash:cf84ce2d8c568057b149d9a94d22e6738aa3c727
Date: 2008-05-07 23:56:28
User: drh
Comment:Fix a typo on the "stat" page.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/stat.c from [7e4cbe6578] to [0523d46255].

@@ -55,11 +55,11 @@
     @ <tr><th>Uncompressed&nbsp;Artifact&nbsp;Size:</th><td>
     t = db_int64(0, "SELECT total(size) FROM blob WHERE size>0");
     sqlite3_snprintf(sizeof(zBuf), zBuf, "%lld", t);
     @ %d((int)(((double)t)/(double)n)) bytes average, %s(zBuf) bytes total
     @ </td></tr>
-    @ <tr><th>Uncompression&nbsp;Ratio:</th><td>
+    @ <tr><th>Compression&nbsp;Ratio:</th><td>
     if( t/fsize < 5 ){
       b = 10;
       fsize /= 10;
     }else{
       b = 1;

Modified src/sync.c from [80fd8e1587] to [03df11b7c9].

@@ -50,11 +50,11 @@
   if( zUrl==0 ){
     return;  /* No default server */
   }
   url_parse(zUrl);
   if( g.urlIsFile ){
-    return 0;  /* Network sync only */
+    return;  /* Network sync only */
   }
   if( g.urlPort!=80 ){
     printf("Autosync:  http://%s:%d%s\n", g.urlName, g.urlPort, g.urlPath);
   }else{
     printf("Autosync:  http://%s%s\n", g.urlName, g.urlPath);