summaryrefslogtreecommitdiffstats
path: root/src/libirecovery.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libirecovery.c')
-rw-r--r--src/libirecovery.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/libirecovery.c b/src/libirecovery.c
index 1defaac..2219f36 100644
--- a/src/libirecovery.c
+++ b/src/libirecovery.c
@@ -3271,14 +3271,8 @@ IRECV_API irecv_error_t irecv_devices_get_device_by_hardware_model(const char* h
*device = NULL;
- /* lowercase hardware_model string for proper lookup */
- char model[8];
- strcpy(model, hardware_model);
- char *p = model;
- for (; *p; ++p) *p = tolower(*p);
-
for (i = 0; irecv_devices[i].hardware_model != NULL; i++) {
- if (!strcmp(model, irecv_devices[i].hardware_model)) {
+ if (!strcasecmp(hardware_model, irecv_devices[i].hardware_model)) {
*device = &irecv_devices[i];
return IRECV_E_SUCCESS;
}