removed writing temporary file for debugging.

This commit is contained in:
gardners 2012-12-04 13:49:47 +10:30
parent 1a12f81474
commit 23cace8455

View File

@ -1245,15 +1245,6 @@ int rhizome_write_content(struct rhizome_fetch_slot *slot, char *buffer, int byt
// might grow while we are reading from them).
if (bytes>(slot->file_len-slot->file_ofs))
bytes=slot->file_len-slot->file_ofs;
{
FILE *f=fopen("/tmp/file","r+");
if (f) {
fseek(f,slot->file_ofs,SEEK_SET);
fwrite(buffer,bytes,1,f);
fclose(f);
}
}
if (slot->rowid==-1) {
/* We are reading a manifest. Read it into a buffer. */