mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-20 16:01:10 +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>
|
||||
|
||||
* fhandler_proc.cc (format_process_stat): make ctty a real device
|
||||
|
@ -36,10 +36,13 @@ main (int argc, char **argv)
|
||||
{
|
||||
char buf[4096];
|
||||
if (!p)
|
||||
p[0] = '\0';
|
||||
{
|
||||
p = buf;
|
||||
p[0] = '\0';
|
||||
}
|
||||
else
|
||||
{
|
||||
strcat (buf, p);
|
||||
strcpy (buf, p);
|
||||
strcat (buf, " ");
|
||||
}
|
||||
strcat(buf, "ntsec");
|
||||
|
Loading…
x
Reference in New Issue
Block a user