Commit db65a005 authored by bcoudurier's avatar bcoudurier

open logfile in append mode, don't overwrite it

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13223 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e049afd0
...@@ -4448,7 +4448,7 @@ int main(int argc, char **argv) ...@@ -4448,7 +4448,7 @@ int main(int argc, char **argv)
if (!strcmp(logfilename, "-")) if (!strcmp(logfilename, "-"))
logfile = stdout; logfile = stdout;
else else
logfile = fopen(logfilename, "w"); logfile = fopen(logfilename, "a");
} }
if (http_server() < 0) { if (http_server() < 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment