Changeset 9131
- Timestamp:
- 12/19/13 22:34:08 (10 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/module-webif.c
r9130 r9131 336 336 if(cfg.waitforcards == 1) { tpl_addVar(vars, TPLADD, "WAITFORCARDSCHECKED", "selected"); } 337 337 tpl_printf(vars, TPLADD, "EXTRADELAY", "%d", cfg.waitforcards_extra_delay); 338 if(cfg.preferlocalcards == 1) { tpl_addVar(vars, TPLADD, "PREFERLOCALCARDSCHECKED", "selected"); } 338 if(cfg.preferlocalcards == 1) 339 { 340 tpl_addVar(vars, TPLADD, "PREFERCACHEEX", "selected"); 341 } 342 else if(cfg.preferlocalcards == 2) 343 { 344 tpl_addVar(vars, TPLADD, "PREFERLOCALCARDS", "selected"); 345 } 339 346 340 347 if(cfg.c35_suppresscmd08) -
trunk/oscam-ecm.c
r9126 r9131 1174 1174 // Cache-Exchange 1175 1175 if((ea->status & REQUEST_SENT) || 1176 (ea->status & (READER_CACHEEX | READER_ACTIVE)) != (READER_CACHEEX | READER_ACTIVE) )1176 (ea->status & (READER_CACHEEX | READER_ACTIVE)) != (READER_CACHEEX | READER_ACTIVE) || cfg.preferlocalcards==2) 1177 1177 { continue; } 1178 1178 break;
Note:
See TracChangeset
for help on using the changeset viewer.