I have ran into a problem with the release version of
2.60 (6/24/97). I am running this on an NT 4.0
machine. When trying to receive a file from a remote
site, I am getting an error, "Out of Disk Space". I
have more than 3 GIG of available disk space on my
workstation. What can I do to get around this
problem?
My e-mail address is David.Haesle@riag.com.
Any help would be greatly appreciated.
Thanks,
David....
just working on a general bugfix
zfree() routine in file_<your-os>.c requires limitation set to 2 GB in any calculation of clusters, bps, splc
/* 2 GB limit ... for DOS and OS/2 drives .. but what is with */
/* connected network drives ? */
/* limit return value to 2 GB limit */
/* despite the count of clusters available */
if ((clusters > 0L) && (bps > 0L) && (spcl > 0L))
{
if (clusters > 0x01ffffffL) /* OK */
{
/* Overflow !!! limit available clusters */
return ((0x01ffffffL) * ((bps / 64L) * spcl));
}
else
{
return (clusters * ((bps / 64L) * spcl));
}
}
else
{
return (0L);
}
Current w32 revision have a rewrite included that has this limitation probably still set
u60