Ticket UUID: | dd5bb1fc73ec6ee821736c40851b0e6a7c7f049f | ||
Title: | Checking auto-sync instead of auto-shun | ||
Status: | Fixed | Type: | Code_Defect |
Severity: | Severe | Priority: | |
Subsystem: | Resolution: | Fixed | |
Last Modified: | 2011-04-14 01:21:24 | ||
Version Found In: | 2011-04-13 12:05:18 (047e06193b65c535d845d10f6e64d8c467ef7524) | ||
Description & Comments: | |||
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; |