Patrick Doyle wrote:
> If that is the case, would anybody mind if I posted a (simple) patch to
> openSSH code which added a timeout to the call(s) to select()?  If I do
> that, will the patch be incorporated into the cygwin release of
> openSSH?  Is there some way to feed that patch back to the openSSH
> development team?

I am that way.

However, your patch should be clean in terms of OS handling.

I recommend using the already used construct:

#ifdef HAVE_CYGWIN
  if (! is_winnt)
    {
      ...your w9x specific code...
    }
#endif


The definition of is_winnt is used eg. in `cygwin_utils.c':

#define is_winnt       (GetVersion() < 0x80000000)

Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                                mailto:[EMAIL PROTECTED]
Red Hat, Inc.
mailto:[EMAIL PROTECTED]

--
Want to unsubscribe from this list?
Send a message to [EMAIL PROTECTED]

Reply via email to