ucm: fix Path condition - substitute Path

Use the appropriate variable for access/eaccess call.

Fixes: https://github.com/alsa-project/alsa-lib/issues/395
Fixes: ef6463a2 ("ucm: fix Path condition - substitute Path and Mode fields")
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Jaroslav Kysela 2024-04-24 14:47:27 +02:00
parent ef6463a209
commit 3fd24db22d

View file

@ -315,9 +315,9 @@ static int if_eval_path(snd_use_case_mgr_t *uc_mgr, snd_config_t *eval)
if (err < 0)
return err;
#ifdef HAVE_EACCESS
err = eaccess(path, amode);
err = eaccess(s, amode);
#else
err = access(path, amode);
err = access(s, amode);
#endif
free(s);
return err ? 0 : 1;