summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sfeed_frames.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfeed_frames.c b/sfeed_frames.c
index 1367876..6edf3c9 100644
--- a/sfeed_frames.c
+++ b/sfeed_frames.c
@@ -244,11 +244,11 @@ main(int argc, char *argv[])
comparetime -= 86400;
/* write main index page */
- if (!(fpindex = fopen("index.html", "w+b")))
+ if (!(fpindex = fopen("index.html", "wb")))
err(1, "fopen: index.html");
- if (!(fpmenu = fopen("menu.html", "w+b")))
+ if (!(fpmenu = fopen("menu.html", "wb")))
err(1, "fopen: menu.html");
- if (!(fpitems = fopen("items.html", "w+b")))
+ if (!(fpitems = fopen("items.html", "wb")))
err(1, "fopen: items.html");
fputs("<html><head><link rel=\"stylesheet\" type=\"text/css\" href=\"../style.css\" />"
"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" /></head>"