* cygrun.c (main): Fix setting of CYGWIN environment variable.

* Makefile.in: Remove linking of unnecessary libraries.
This commit is contained in:
Christopher Faylor 2002-09-25 13:53:46 +00:00
parent 38c77307c5
commit 961973e7a4
2 changed files with 11 additions and 2 deletions

View File

@ -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

View File

@ -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");