projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
49c4761
)
Properly build path names for TryExec
author
Dana Jansens
<danakj@orodu.net>
Sun, 24 Jul 2011 23:29:26 +0000
(19:29 -0400)
committer
Dana Jansens
<danakj@orodu.net>
Sun, 16 Oct 2011 22:54:05 +0000
(18:54 -0400)
obt/paths.c
patch
|
blob
|
history
diff --git
a/obt/paths.c
b/obt/paths.c
index f2d4b420848efeb3677123341f28560d0b329999..25cb6b0eb58c7a4c415f3c24dd7dd2d9d8da8498 100644
(file)
--- a/
obt/paths.c
+++ b/
obt/paths.c
@@
-359,7
+359,7
@@
gboolean obt_paths_try_exec(ObtPaths *p, const gchar *path)
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;