diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2003-06-02 18:29:46 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2003-06-02 18:29:46 +0000 |
commit | dc694082e66bcad1c2faeb08a1c5832719339050 (patch) | |
tree | be22b4c12ab54add42825cf212b87038261b0dcf /win32/win32.c | |
parent | 64b007ad21aa3ae393a46cb085cae3d4dc3ff72e (diff) | |
download | perl-dc694082e66bcad1c2faeb08a1c5832719339050.tar.gz |
change#19628 broke many win32/system.t tests, so back it out
p4raw-link: @19628 on //depot/perl: 7b24c8f3b02202da900623391393234a869d1b34
p4raw-id: //depot/perl@19666
Diffstat (limited to 'win32/win32.c')
-rw-r--r-- | win32/win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c index 0b4e220577..c40920332d 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -506,7 +506,7 @@ get_shell(void) * for). */ const char* defaultshell = (IsWinNT() - ? "cmd.exe /x/d/c" : "command.com /c"); + ? "cmd.exe /x/c" : "command.com /c"); const char *usershell = PerlEnv_getenv("PERL5SHELL"); w32_perlshell_items = tokenize(usershell ? usershell : defaultshell, &w32_perlshell_tokens, |