all repos — openbox @ 69672e9d07381d088049e113da63b5beb7e90636

openbox fork - make it a bit more like ryudo

Properly build path names for obt_paths_try_exec
Dana Jansens danakj@orodu.net
commit

69672e9d07381d088049e113da63b5beb7e90636

parent

9f31f80ce8adaa4c4cc899e7ab9106d971fe4e96

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M obt/paths.cobt/paths.c

@@ -359,7 +359,7 @@ else {

GSList *it; for (it = p->exec_dirs; it; it = g_slist_next(it)) { - gchar *f = g_strdup_printf(it->data, G_DIR_SEPARATOR_S, path); + gchar *f = g_build_filename(it->data, path, NULL); gboolean e = try_exec(p, f); g_free(f); if (e) return TRUE;