The unified diff between revisions [2b954d40..] and [9bd1d83f..] is displayed below. It can also be downloaded as a raw diff.

#
#
# patch "CHANGES"
#  from [4de896d8eb9ec752aaad4706a128f98fe199c869]
#    to [52d8155b7e65c65b47d646fa5f842a13ef25cada]
#
# patch "scpmisc.h"
#  from [14f223b0890febf280796d9cc48b37dbb212d311]
#    to [162472df78978824d5fc0838470aa9bc16f2b7d9]
#
============================================================
--- CHANGES	4de896d8eb9ec752aaad4706a128f98fe199c869
+++ CHANGES	52d8155b7e65c65b47d646fa5f842a13ef25cada
@@ -1,3 +1,7 @@
+0.48.1 - Sat 11 March 2006
+
+- Compile fix for scp
+
 0.48 - Thurs 9 March 2006

 - Check that the circular buffer is properly empty before
============================================================
--- scpmisc.h	14f223b0890febf280796d9cc48b37dbb212d311
+++ scpmisc.h	162472df78978824d5fc0838470aa9bc16f2b7d9
@@ -46,3 +46,24 @@ void sanitise_stdfd(void);
 char *ssh_get_progname(char *);
 void fatal(char* fmt,...);
 void sanitise_stdfd(void);
+
+/* Required for non-BSD platforms, from OpenSSH's defines.h */
+#ifndef timersub
+#define timersub(a, b, result)                  \
+   do {                             \
+      (result)->tv_sec = (a)->tv_sec - (b)->tv_sec;     \
+      (result)->tv_usec = (a)->tv_usec - (b)->tv_usec;      \
+      if ((result)->tv_usec < 0) {              \
+     --(result)->tv_sec;                    \
+     (result)->tv_usec += 1000000;              \
+      }                             \
+   } while (0)
+#endif
+
+#ifndef TIMEVAL_TO_TIMESPEC
+#define TIMEVAL_TO_TIMESPEC(tv, ts) {                   \
+    (ts)->tv_sec = (tv)->tv_sec;                    \
+    (ts)->tv_nsec = (tv)->tv_usec * 1000;               \
+}
+#endif
+