[project @ 2004-03-26 22:14:49 by jmb]

Fix file access mode

svn path=/import/netsurf/; revision=670
This commit is contained in:
John Mark Bell 2004-03-26 22:14:49 +00:00
parent 3c4148943a
commit 83b0835341
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ void save_as_text(struct content *c, char *path) {
return;
}
out = fopen(path, "w+");
out = fopen(path, "w");
if (!out) return;
toSave = htmlCreateMemoryParserCtxt(c->source_data, c->source_size);