From 83b08353412d136d02266206dc2ec025477f70c3 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Fri, 26 Mar 2004 22:14:49 +0000 Subject: [project @ 2004-03-26 22:14:49 by jmb] Fix file access mode svn path=/import/netsurf/; revision=670 --- desktop/save_text.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/save_text.c b/desktop/save_text.c index 916567717..18e565489 100644 --- a/desktop/save_text.c +++ b/desktop/save_text.c @@ -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); -- cgit v1.2.3