From d20d7911c442a7afcba6fb8134e22005dbb9e207 Mon Sep 17 00:00:00 2001 From: Paul Gardner-Stephen Date: Wed, 14 Nov 2018 13:25:45 +1030 Subject: [PATCH] actually use containerised path on iOS --- instance.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instance.c b/instance.c index 9f520735..0790a9cd 100644 --- a/instance.c +++ b/instance.c @@ -152,7 +152,7 @@ int _formf_serval_etc_path(struct __sourceloc __whence, char *buf, size_t bufsiz #endif va_start(ap, fmt); - int ret = vformf_path(__whence, strbuf_local(buf, bufsiz), SERVAL_ETC_PATH, NULL, fmt, ap); + int ret = vformf_path(__whence, strbuf_local(buf, bufsiz), base_path, NULL, fmt, ap); va_end(ap); return ret; }