From 23cace845573a11c341384258e26e846f6163e7c Mon Sep 17 00:00:00 2001 From: gardners Date: Tue, 4 Dec 2012 13:49:47 +1030 Subject: [PATCH] removed writing temporary file for debugging. --- rhizome_fetch.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/rhizome_fetch.c b/rhizome_fetch.c index 7d422489..1f011fbf 100644 --- a/rhizome_fetch.c +++ b/rhizome_fetch.c @@ -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. */