raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=3a89768e48136611de67f3894a761d9b24ee4d33
commit 3a89768e48136611de67f3894a761d9b24ee4d33 Author: Kai Huuhko <[email protected]> Date: Mon May 19 15:52:42 2014 +0900 e_open: Handle URIs in a more generic way Summary: Fixes T1219 Reviewers: zmike CC: cedric Maniphest Tasks: T1219 Differential Revision: https://phab.enlightenment.org/D866 --- src/bin/e_open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_open.c b/src/bin/e_open.c index c429029..e387027 100644 --- a/src/bin/e_open.c +++ b/src/bin/e_open.c @@ -508,7 +508,7 @@ main(int argc, char *argv[]) } } } - else if (strstr(argv[args], "://")) + else if (strstr(argv[args], ":")) cmds = protocol_open(argv[args]); else cmds = local_open(argv[args]); --
