Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-01-17 21:05:32 +0300
committerChristopher Faylor <me@cgf.cx>2003-01-17 21:05:32 +0300
commite9152439113f89322368774977e52f339d88f382 (patch)
tree11e95d6838b49212bcf9ba24a999de53254aed0d /winsup/cygwin/dcrt0.cc
parentafa378e74a5bf8126053ee47a1be536d7cdcd822 (diff)
* dcrt0.cc (initialize_env): Use colon for CYGWIN_DEBUG separator.
* grp.cc: Change most statics to NO_COPY throughout. * passwd.cc: Ditto. * pwdgrp.h: Change some BOOLs to bools. (pwdgrp::pwdgrp): Remove unneeded constructor. * passwd.cc: Change BOOL to bool throughout.
Diffstat (limited to 'winsup/cygwin/dcrt0.cc')
-rw-r--r--winsup/cygwin/dcrt0.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/dcrt0.cc b/winsup/cygwin/dcrt0.cc
index f40264584..004837d6e 100644
--- a/winsup/cygwin/dcrt0.cc
+++ b/winsup/cygwin/dcrt0.cc
@@ -809,7 +809,7 @@ initial_env ()
len = GetModuleFileName (NULL, buf1, MAX_PATH);
strlwr (buf1);
strlwr (buf);
- char *p = strchr (buf, '=');
+ char *p = strchr (buf, ':');
if (!p)
p = (char *) "gdb.exe -nw";
else