Diff
Not logged in

Differences From:

File src/sync.c part of check-in [9346f2290c] - Added the "all" command for things like "fossil all sync". I am not sure "all" is quite the right name for this command, so I may yet change it. by drh on 2008-10-17 00:20:21. [view]

To:

File src/sync.c part of check-in [6b0b57a924] - Add logic to do a configuration push. Add logic to synchronize the CONCEALED table containing hidden email addresses (assuming appropriate permissions). Additional testng is needed; this check-in is to transfer the work to another machine. by drh on 2008-10-25 17:51:37. [view]

@@ -62,9 +62,9 @@
   }else{
     printf("Autosync:  http://%s%s\n", g.urlName, g.urlPath);
   }
   url_enable_proxy("via proxy: ");
-  client_sync((flags & AUTOSYNC_PUSH)!=0, 1, 0, 0);
+  client_sync((flags & AUTOSYNC_PUSH)!=0, 1, 0, 0, 0);
 }
 
 /*
 ** This routine processes the command-line argument for push, pull,
@@ -125,9 +125,9 @@
 ** 80.
 */
 void pull_cmd(void){
   process_sync_args();
-  client_sync(0,1,0,0);
+  client_sync(0,1,0,0,0);
 }
 
 /*
 ** COMMAND: push
@@ -138,9 +138,9 @@
 ** See the "pull" command for additional information.
 */
 void push_cmd(void){
   process_sync_args();
-  client_sync(1,0,0,0);
+  client_sync(1,0,0,0,0);
 }
 
 
 /*
@@ -153,6 +153,6 @@
 ** See the "pull" command for additional information.
 */
 void sync_cmd(void){
   process_sync_args();
-  client_sync(1,1,0,0);
+  client_sync(1,1,0,0,0);
 }