Add this to check if device was created via cuse and allow it. This
assumes no other device present on system.
Signed-off-by: Nikita Shubin <nikita.shubin@maquefel.me>
*/
errno = 0;
- if (strcmp(sysfsp, "/sys/bus/gpio") != 0) {
- /* This is a character device but not the one we're after. */
- errno = ENODEV;
- goto out_free_sysfsp;
+ if (strcmp(sysfsp, "/sys/class/cuse") != 0) {
+ if (strcmp(sysfsp, "/sys/bus/gpio") != 0) {
+ /* This is a character device but not the one we're after. */
+ errno = ENODEV;
+ goto out_free_sysfsp;
+ }
}
ret = true;