afb-hsrv: Adds an error when alias dir doesn't exist
[src/app-framework-binder.git] / src / afb-hsrv.c
index 030bec5..56509c3 100644 (file)
@@ -366,7 +366,7 @@ int afb_hsrv_add_alias(struct afb_hsrv *hsrv, const char *prefix, int dirfd, con
 
        root = locale_root_create_at(dirfd, alias);
        if (root == NULL) {
-               /* TODO message */
+               ERROR("can't connect to directory %s: %m", alias);
                rc = 0;
        } else {
                rc = afb_hsrv_add_alias_root(hsrv, prefix, root, priority, relax);