mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
Map specific cwmp faults to general failure for usp proto
This commit is contained in:
parent
34f9f678f9
commit
420f0b1873
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ int usp_fault_map(int fault)
|
|||
out_fault = USP_FAULT_PARAM_READ_ONLY;
|
||||
break;
|
||||
default:
|
||||
if (fault)
|
||||
if (fault >= FAULT_9000)
|
||||
out_fault = USP_FAULT_GENERAL_FAILURE;
|
||||
else
|
||||
out_fault = fault;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue