Blame SOURCES/0117-fp-device-Call-identify-device-class-method-on-ident.patch

73b847
From 63d7df4e804a7642b6fd407e37e2187d1e3e197d Mon Sep 17 00:00:00 2001
73b847
From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= <mail@3v1n0.net>
73b847
Date: Fri, 6 Dec 2019 17:18:26 +0100
73b847
Subject: [PATCH 117/181] fp-device: Call identify device class method on
73b847
 identification
73b847
73b847
Identify on device was broken because we were calling verify device method
73b847
on devices instead of the right one.
73b847
73b847
Thank you unit tests! :)
73b847
---
73b847
 libfprint/fp-device.c | 2 +-
73b847
 1 file changed, 1 insertion(+), 1 deletion(-)
73b847
73b847
diff --git a/libfprint/fp-device.c b/libfprint/fp-device.c
73b847
index c49e5a9..3ac3a1c 100644
73b847
--- a/libfprint/fp-device.c
73b847
+++ b/libfprint/fp-device.c
73b847
@@ -923,7 +923,7 @@ fp_device_identify (FpDevice           *device,
73b847
                         g_ptr_array_ref (prints),
73b847
                         (GDestroyNotify) g_ptr_array_unref);
73b847
 
73b847
-  FP_DEVICE_GET_CLASS (device)->verify (device);
73b847
+  FP_DEVICE_GET_CLASS (device)->identify (device);
73b847
 }
73b847
 
73b847
 /**
73b847
-- 
73b847
2.24.1
73b847