Commit 0aecfdf9 authored by Alex Beregszaszi's avatar Alex Beregszaszi

remove useless code, file removal is handled elsewhere

Originally committed as revision 8782 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b237eb80
...@@ -3956,16 +3956,6 @@ static int parse_ffconfig(const char *filename) ...@@ -3956,16 +3956,6 @@ static int parse_ffconfig(const char *filename)
fprintf(stderr, "%s:%d: No corresponding <Feed> for </Feed>\n", fprintf(stderr, "%s:%d: No corresponding <Feed> for </Feed>\n",
filename, line_num); filename, line_num);
errors++; errors++;
#if 0
} else {
/* Make sure that we start out clean */
if (unlink(feed->feed_filename) < 0
&& errno != ENOENT) {
fprintf(stderr, "%s:%d: Unable to clean old feed file '%s': %s\n",
filename, line_num, feed->feed_filename, strerror(errno));
errors++;
}
#endif
} }
feed = NULL; feed = NULL;
} else if (!strcasecmp(cmd, "<Stream")) { } else if (!strcasecmp(cmd, "<Stream")) {
......
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