mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-16 21:28:33 +03:00
Fix swapped manufacturer/product strings
the */usb_strings.txt files always assumed that the first line is the manufacturer string, followed by the product string in the second line. However, the enum strDescNum had it the other way around. Let's fix it by adjusting the enum to reality. Fixes: SYS#3591
This commit is contained in:
@@ -47,8 +47,8 @@
|
||||
*------------------------------------------------------------------------------*/
|
||||
#include "usb_strings_generated.h"
|
||||
enum strDescNum {
|
||||
PRODUCT_STRING = 1,
|
||||
MANUF_STR,
|
||||
MANUF_STR = 1,
|
||||
PRODUCT_STRING,
|
||||
SNIFFER_CONF_STR,
|
||||
CCID_CONF_STR,
|
||||
PHONE_CONF_STR,
|
||||
|
||||
Reference in New Issue
Block a user