Displaying 2 results from an estimated 2 matches for "read_devices".
2010 Mar 02
9
"Dos installer" from Win98se
On 02/27/2010 10:31 PM, swdamle at bsnl.in wrote:
> Hello,
> This has reference to ""Dos installer" from Win98se in Syslinux-3.84.
>
> Sorry to say the problem CONTINUES with Syslinux-3.85. Following is
> for your reference please.
>
You may want to try:
http://www.zytor.com/~hpa/syslinux/syslinux.com
... which is compiled with debugging information turned
2002 Aug 05
5
[patch] read-devices
...- next part --------------
diff -r -u4 rsync-2.5.5/checksum.c rsync-patched/checksum.c
--- rsync-2.5.5/checksum.c Tue Oct 26 01:04:09 1999
+++ rsync-patched/checksum.c Mon Aug 5 10:05:15 2002
@@ -24,8 +24,9 @@
#define CSUM_CHUNK 64
int checksum_seed = 0;
extern int remote_version;
+extern int read_devices;
/*
a simple 32 bit checksum that can be upadted from either end
(inspired by Mark Adler's Adler-32 checksum)
@@ -73,43 +74,40 @@
for(i = 0; i + CSUM_CHUNK <= len; i += CSUM_CHUNK) {
mdfour_update(&m, (uchar *)(buf1+i), CSUM_CHUNK);
}
- if (len - i > 0) {
+ if (len...