Opened 22 months ago
#4723 new defect
pliz fix ecminfo_type =?
Reported by: | Marat | Owned by: | |
---|---|---|---|
Priority: | Please fill in | Component: | ! Please select... |
Severity: | Please fill in | Keywords: | |
Cc: | Sensitive: | no |
Description
please fix ecminfo_type =0 and ecminfo_type =1 parameter, not correct information designation in ecm.info...
reads from this block of code
if(cfg.dvbapi_ecminfo_type == ECMINFO_TYPE_WICARDD) { fprintf(ecmtxt, "prov: %06X\n", (uint) er->prid); } else { fprintf(ecmtxt, "prov: 0x%06X\n", (uint) er->prid); } fprintf(ecmtxt, "chid: 0x%04X\n", er->chid); }
and should work with this block of code
if(cfg.dvbapi_ecminfo_type <= ECMINFO_TYPE_WICARDD) { if(cfg.dvbapi_ecminfo_type == ECMINFO_TYPE_WICARDD) { fprintf(ecmtxt, "system: %s\n", system_name); } fprintf(ecmtxt, "caid: 0x%04X\npid: 0x%04X\n", er->caid, er->pid);
Note:
See TracTickets
for help on using tickets.