From d45b04109b1e60e9a73fc865af7eb32a15a7f002 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 16 May 2011 11:03:45 +0000 Subject: [PATCH] also allow eject SVN revision: 59444 --- src/bin/e_sys_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_sys_main.c b/src/bin/e_sys_main.c index d87ae64d0..b7b0d9d3c 100644 --- a/src/bin/e_sys_main.c +++ b/src/bin/e_sys_main.c @@ -69,7 +69,7 @@ main(int argc, s = strrchr(argv[1], '/'); if ((!s) || (!(++s))) exit(1); /* eeze always uses complete path */ - if (strcmp(s, "mount") && strcmp(s, "umount")) exit(1); + if (strcmp(s, "mount") && strcmp(s, "umount") && strcmp(s, "eject")) exit(1); mnt = EINA_TRUE; action = argv[1]; }