UnixWare 2.03 patch
Tim Rice
tim at multitalents.net
Fri Jan 5 07:13:36 EST 2001
Here is a patch to help UnixWare 2.03 along.
No if we could only change utimes() back to utime() in scp.c & sftp-server.c
we would have a working versin for Unixware 2.03 and SCO 3.2v4.2
--
Tim Rice Multitalents (707) 887-1469
tim at multitalents.net
-------------- next part --------------
--- defines.h.old Wed Jan 3 17:33:52 2001
+++ defines.h Wed Jan 3 17:41:28 2001
@@ -360,6 +360,10 @@
# define memmove(s1, s2, n) bcopy((s2), (s1), (n))
#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
+#if defined(HAVE_MEMMOVE) && !defined(HAVE_BCOPY)
+#define bcopy(b1,b2,length) (void) memmove ((b2), (b1), (length))
+#endif /* defined(HAVE_MEMMOVE) && !defined(HAVE_BCOPY) */
+
#if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT)
# define atexit(a) on_exit(a)
#else
More information about the openssh-unix-dev
mailing list