Fossil SCM
Checking auto-sync instead of auto-shun
Fixed
dd5bb1fc73ec6ee…
· opened 14 years, 11 months ago
- Type
- Code_Defect
- Priority
- —
- Severity
- Severe
- Resolution
- Fixed
- Subsystem
- —
- Created
- April 13, 2011 7:02 p.m.
In src/sync.c in the process_sync_args function, the following code:
if( db_get_boolean("auto-sync",1) ) configSync = CONFIGSET_SHUN;
should be testing "auto-shun" instead like so:
if( db_get_boolean("auto-shun",1) ) configSync = CONFIGSET_SHUN;