summaryrefslogtreecommitdiffstats
path: root/core/unix.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2018-08-27 08:27:07 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-08-27 22:09:44 -0700
commitbb067b6ee4828fc2444395d4cfda80831c4721bb (patch)
tree87829159ac865e5557c42c537ef7569dbd87a6dd /core/unix.c
parentcae30f450af10f919410cbfe45497404d065a722 (diff)
downloadsubsurface-bb067b6ee4828fc2444395d4cfda80831c4721bb.tar.gz
Treat the "GARMIN" mount point exactly like the "UEMISSDA" one
The logic for finding a mount point for the Garmin FIT devices is basically exactly the same as for the UEMISSDA, even if the rest of the sequence is not the same. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/unix.c')
-rw-r--r--core/unix.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/unix.c b/core/unix.c
index a75bcd792..48fd3f467 100644
--- a/core/unix.c
+++ b/core/unix.c
@@ -161,6 +161,8 @@ int enumerate_devices(device_callback_t callback, void *userdata, int dc_type)
while ((getline(&line, &len, file)) != -1) {
char *ptr = strstr(line, "UEMISSDA");
+ if (!ptr)
+ ptr = strstr(line, "GARMIN");
if (ptr) {
char *end = ptr, *start = ptr;
while (start > line && *start != ' ')