diff options
Diffstat (limited to 'src/eggshell.c')
-rw-r--r-- | src/eggshell.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/eggshell.c b/src/eggshell.c index e7e7757..95d7994 100644 --- a/src/eggshell.c +++ b/src/eggshell.c @@ -40,9 +40,7 @@ #include <stdio.h> #include <string.h> #include <unistd.h> -#ifndef G_OS_WIN32 #include <pwd.h> -#endif #include <glib.h> @@ -57,7 +55,6 @@ char * egg_shell (const char *shell) { -#ifndef G_OS_WIN32 struct passwd *pw; int i; static const char shells [][14] = @@ -105,18 +102,4 @@ egg_shell (const char *shell) /* Placate compiler. */ return NULL; -#else - /* g_find_program_in_path() always looks also in the Windows - * and System32 directories, so it should always find either cmd.exe - * or command.com. - */ - char *retval = g_find_program_in_path ("cmd.exe"); - - if (retval == NULL) - retval = g_find_program_in_path ("command.com"); - - g_assert (retval != NULL); - - return retval; -#endif } |