changeset 15553:265adb00eacd

lib-master: Ignore /Volumes and /private/tmp mountpoints with OSX (only).
author Timo Sirainen <tss@iki.fi>
date Sat, 08 Dec 2012 11:13:51 +0200
parents 657cb4c35a0e
children f13f2725882e
files src/lib-master/mountpoint-list.c
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib-master/mountpoint-list.c	Sat Dec 08 11:12:10 2012 +0200
+++ b/src/lib-master/mountpoint-list.c	Sat Dec 08 11:13:51 2012 +0200
@@ -57,7 +57,10 @@
 	"/proc",
 	"/var/run",
 	"/run",
-	"/Volumes", /* OSX */
+#ifdef __APPLE__
+	"/Volumes",
+	"/private/tmp",
+#endif
 	NULL
 };