sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit cdc73fd95e569c02e6b22762276e975a89a90c0f
parent 3b849ce5a6387f2b95936ea225f2047e79a5b0c3
Author: Mikkel Oscar Lyderik <mikkeloscar@gmail.com>
Date:   Sat, 26 Mar 2016 17:11:18 +0100

Don't try to read config if not a file.

Diffstat:
Msway/config.c | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/sway/config.c b/sway/config.c @@ -6,6 +6,7 @@ #include <wordexp.h> #include <sys/types.h> #include <sys/wait.h> +#include <sys/stat.h> #include <signal.h> #include <libinput.h> #include <limits.h> @@ -245,6 +246,11 @@ static char *get_config_path(void) { static bool load_config(const char *path, struct sway_config *config) { sway_log(L_INFO, "Loading config from %s", path); + struct stat sb; + if (stat(path, &sb) == 0 && S_ISDIR(sb.st_mode)) { + return false; + } + if (path == NULL) { sway_log(L_ERROR, "Unable to find a config file!"); return false;