diff --git a/src/source.c b/src/source.c index b6426c6b..fcdd016b 100644 --- a/src/source.c +++ b/src/source.c @@ -70,6 +70,10 @@ source_t *source_reserve (const char *mount) { source_t *src = NULL; + if(mount[0] != '/') + WARN1("Source at \"%s\" does not start with '/', clients will be " + "unable to connect", mount); + do { avl_tree_wlock (global.source_tree);