diff options
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/pinfo.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index bcf827310..899282a5a 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,9 @@ 2003-12-11 Christopher Faylor <cgf@redhat.com> + * pinfo.cc (_pinfo::set_ctty): Correct stupid typo. + +2003-12-11 Christopher Faylor <cgf@redhat.com> + * cygheap.h (cygheap_types): Add HEAP_ARCHETYPES. (init_cheap::ctty): Change to pointer. * dtable.h (dtable::find_archetype): Declare new function. diff --git a/winsup/cygwin/pinfo.cc b/winsup/cygwin/pinfo.cc index f18ced7c1..f1c1c8cff 100644 --- a/winsup/cygwin/pinfo.cc +++ b/winsup/cygwin/pinfo.cc @@ -278,7 +278,7 @@ _pinfo::set_ctty (tty_min *tc, int flags, fhandler_tty_slave *arch) tc->setpgid (pgid); if (cygheap->ctty != arch) { - if (cygheap->ctty) + if (!cygheap->ctty) syscall_printf ("ctty NULL"); else { |