Fix: bad errno handling in load session from path
[lttng-tools.git] / src / common / config / config.c
index 0e9e1bdc722661c21fb4172b27ba49a593b742ae..e61791b7d03b01eafad109b66f319421bb1f7e16 100644 (file)
@@ -2344,13 +2344,14 @@ int load_session_from_path(const char *path, const char *session_name,
        if (!directory) {
                switch (errno) {
                case ENOTDIR:
-                       ret = -LTTNG_ERR_LOAD_IO_FAIL;
-                       goto end;
+                       /* Try the file loading. */
+                       break;
                case ENOENT:
                        ret = -LTTNG_ERR_LOAD_SESSION_NOENT;
                        goto end;
                default:
-                       break;
+                       ret = -LTTNG_ERR_LOAD_IO_FAIL;
+                       goto end;
                }
        }
        if (directory) {
This page took 0.024021 seconds and 5 git commands to generate.