diff options
author | Christian Pointner <equinox@spreadspace.org> | 2015-10-14 15:32:43 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2015-10-14 15:32:43 +0200 |
commit | a84e372d3f977f657378bb489f9ed5d88ea70334 (patch) | |
tree | c6dd78a239bc0ea3d5da2415d0c01bec3c245a0a /app/mixer.c | |
parent | added first version of an openwrt package (diff) |
fixed etc dir
Diffstat (limited to 'app/mixer.c')
-rw-r--r-- | app/mixer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/mixer.c b/app/mixer.c index 54df1b4..b95c031 100644 --- a/app/mixer.c +++ b/app/mixer.c @@ -90,7 +90,7 @@ static int mixer_read_config_file(mixer_t* x, int dirfd, const char* filename) static int mixer_read_config(mixer_t* x) { char path[1024]; - int ret = snprintf(path, sizeof(path), "%s/%s", ETCDIR, x->name_); + int ret = snprintf(path, sizeof(path), "%s/dolmetschctl/%s", ETCDIR, x->name_); assert(ret < sizeof(path)); DIR* d = opendir(path); |