Differences From:
File
src/xfer.c
part of check-in
[bf75ea9852]
- The "configuration" command will now sync ticket report formats, shunned
UUIDs, and user information (but not user passwords). Added the
"config merge" method. Fix an initialization bug that was given Admin
privilege to anonymous by default.
by
drh on
2008-10-04 20:40:27.
[view]
To:
File
src/xfer.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]
@@ -819,8 +819,11 @@
assert( pushFlag || pullFlag || cloneFlag || configMask );
assert( !g.urlIsFile ); /* This only works for networking */
db_begin_transaction();
+ if( pullFlag || cloneFlag ){
+ db_record_repository_filename(0);
+ }
db_multi_exec(
"CREATE TEMP TABLE onremote(rid INTEGER PRIMARY KEY);"
);
blobarray_zero(xfer.aToken, count(xfer.aToken));