From 32ed522e47c6c455002d2536881d6608a965c8f9 Mon Sep 17 00:00:00 2001 From: Moritz Fischer Date: Tue, 22 Dec 2015 19:42:01 -0800 Subject: libgpsd-core: Fix issue with ACTIVATE hook not being called. In the current system session->mode seemed to ignore the O_OPTIMIZE flag, leading to the ACTIVATE hook being ignored. Another way to fix this would be to keep the session->mode condition pull up the check for O_CONTINUE. Signed-off-by: Moritz Fischer --- libgpsd_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libgpsd_core.c') diff --git a/libgpsd_core.c b/libgpsd_core.c index 78b6bb90..c3aad99d 100644 --- a/libgpsd_core.c +++ b/libgpsd_core.c @@ -546,7 +546,7 @@ int gpsd_open(struct gps_device_t *session) int gpsd_activate(struct gps_device_t *session, const int mode) /* acquire a connection to the GPS device */ { - if (session->mode == O_OPTIMIZE) + if (mode == O_OPTIMIZE) gpsd_run_device_hook(&session->context->errout, session->gpsdata.dev.path, "ACTIVATE"); session->gpsdata.gps_fd = gpsd_open(session); -- cgit v1.2.1