summaryrefslogtreecommitdiffstats
path: root/src/pulsecore
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-07-23 19:12:53 +0200
committerLennart Poettering <lennart@poettering.net>2009-07-23 19:12:53 +0200
commit5a0ef5fd139151b285720f2c9edf3b559556c86d (patch)
tree59356f7a3bf37e53b21f81b89f02fbef06aab855 /src/pulsecore
parentac38c4d89845237cd5d19c29d8d3ef55f0374dca (diff)
daemon: replace colons by dash in per-machine directory names for compat with weird filesystems
Diffstat (limited to 'src/pulsecore')
-rw-r--r--src/pulsecore/core-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pulsecore/core-util.c b/src/pulsecore/core-util.c
index 04e7eb24..5f777d5b 100644
--- a/src/pulsecore/core-util.c
+++ b/src/pulsecore/core-util.c
@@ -1481,7 +1481,7 @@ char *pa_get_runtime_dir(void) {
goto fail;
}
- k = pa_sprintf_malloc("%s" PA_PATH_SEP "%s:runtime", d, mid);
+ k = pa_sprintf_malloc("%s" PA_PATH_SEP "%s-runtime", d, mid);
pa_xfree(d);
pa_xfree(mid);
@@ -1904,7 +1904,7 @@ static char *get_path(const char *fn, pa_bool_t prependmid, pa_bool_t rt) {
return NULL;
}
- r = pa_sprintf_malloc("%s" PA_PATH_SEP "%s:%s", rtp, mid, fn);
+ r = pa_sprintf_malloc("%s" PA_PATH_SEP "%s-%s", rtp, mid, fn);
pa_xfree(mid);
} else
r = pa_sprintf_malloc("%s" PA_PATH_SEP "%s", rtp, fn);