From 770539f0a5e34ac25ea6992e2205142ec3d65691 Mon Sep 17 00:00:00 2001 From: Daniel Molkentin Date: Fri, 4 Oct 2013 12:41:48 +0200 Subject: [PATCH] Look in PlugIns, not Plugins on Mac (consistent with Qt) --- src/vio/csync_vio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vio/csync_vio.c b/src/vio/csync_vio.c index 1f8f454b5d..bc2d5b6c97 100644 --- a/src/vio/csync_vio.c +++ b/src/vio/csync_vio.c @@ -130,7 +130,7 @@ int csync_vio_init(CSYNC *ctx, const char *module, const char *args) { path2 = c_dirname(path_tmp); - if (asprintf(&path, "%s/../Plugins/ocsync_%s.%s", path2, module, MODULE_EXTENSION) < 0) { + if (asprintf(&path, "%s/../PlugIns/ocsync_%s.%s", path2, module, MODULE_EXTENSION) < 0) { return -1; } }