mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-22 16:49:45 +08:00
* cygrun.c (main): Fix setting of CYGWIN environment variable.
* Makefile.in: Remove linking of unnecessary libraries.
This commit is contained in:
parent
38c77307c5
commit
961973e7a4
@ -1,3 +1,9 @@
|
|||||||
|
2002-09-25 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* cygrun.c (main): Fix setting of CYGWIN environment variable.
|
||||||
|
|
||||||
|
* Makefile.in: Remove linking of unnecessary libraries.
|
||||||
|
|
||||||
2002-09-24 Christopher January <chris@atomice.net>
|
2002-09-24 Christopher January <chris@atomice.net>
|
||||||
|
|
||||||
* fhandler_proc.cc (format_process_stat): make ctty a real device
|
* fhandler_proc.cc (format_process_stat): make ctty a real device
|
||||||
|
@ -36,10 +36,13 @@ main (int argc, char **argv)
|
|||||||
{
|
{
|
||||||
char buf[4096];
|
char buf[4096];
|
||||||
if (!p)
|
if (!p)
|
||||||
|
{
|
||||||
|
p = buf;
|
||||||
p[0] = '\0';
|
p[0] = '\0';
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
strcat (buf, p);
|
strcpy (buf, p);
|
||||||
strcat (buf, " ");
|
strcat (buf, " ");
|
||||||
}
|
}
|
||||||
strcat(buf, "ntsec");
|
strcat(buf, "ntsec");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user