Displaying 2 results from an estimated 2 matches for "124,130".
Did you mean:
124,13
2002 Jun 07
4
openssh for UWIN
.../* Disable rhosts authentication if not running as root. */
! #if define(HAVE_CYGWIN) || defined(_UWIN)
/* Ignore uid if running under Windows */
if (!options.use_privileged_port) {
#else
*** sshpty.c.orig Thu Dec 20 22:45:52 2001
--- sshpty.c Thu May 30 16:37:50 2002
***************
*** 124,130 ****
close(*ptyfd);
return 0;
}
! #ifndef HAVE_CYGWIN
/*
* Push the appropriate streams modules, as described in Solaris pts(7).
* HP-UX pts(7) doesn't have ttcompat module.
--- 124,130 ----
close(*ptyfd);
return 0;
}
! #if !defined(HAVE_CYGWIN) && !...
2002 Jun 27
1
OpenSSH 3.3p1 on SunOS 4.1.4
...#include <stdlib.h>
#include <string.h>
+ #include <memory.h>
/*
* __findenv --
***************
*** 123,129 ****
(cnt + 2)));
if (!P)
return (-1);
! memmove(P, environ, cnt * sizeof(char *));
environ = P;
}
environ[cnt + 1] = NULL;
--- 124,130 ----
(cnt + 2)));
if (!P)
return (-1);
! memcpy(P, environ, cnt * sizeof(char *));
environ = P;
}
environ[cnt + 1] = NULL;
*** ssh-agent.c.orig Fri Jun 21 02:41:52 2002
--- ssh-agent.c Wed Jun 26 18:18:48 2002
***************
*** 939,944 ****
--- 939,945 ----...