summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-05 15:36:21 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-05 15:36:21 +0000
commitb6367d64f400ee44eb2baf309924949e987d6d16 (patch)
treed31809f32a10f7145932a10a7a0c926e97171e48 /win32
parent30f5a38b46f6f64f647c25edc39caf9a1613137a (diff)
* win32/win32.c (isInternalCmd): stupid miss.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4518 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 41a2d6aaa2..b7827218ad 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -552,7 +552,7 @@ isInternalCmd(const char *cmd, const char *interp)
char cmdname[9], *b = cmdname, c, **nm;
i = strlen(interp) - 11;
- if ((i == 0 || i > 0 && isdirsep(interp[i])) &&
+ if ((i == 0 || i > 0 && isdirsep(interp[i-1])) &&
strcasecmp(interp+i, "command.com") == 0) {
nt = 0;
}