summaryrefslogtreecommitdiff
path: root/ffserver.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2008-05-29 08:48:51 +0000
committerDiego Biurrun <diego@biurrun.de>2008-05-29 08:48:51 +0000
commitea9c581f6100afc50aad4cf8f405ec9749144f71 (patch)
treea12ace050cb683c104736e6ba4f840a8fd9bea28 /ffserver.c
parent9667a2d268e08ed15576e6776fa1eac7213dc98b (diff)
Simplify show_banner() so that it does not require arguments, similar
to what was previously done with show_version(). patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13526 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffserver.c')
-rw-r--r--ffserver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffserver.c b/ffserver.c
index b9718d843b..e12e98e3fe 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -57,7 +57,7 @@
#undef exit
const char program_name[] = "FFserver";
-static const int program_birth_year = 2000;
+const int program_birth_year = 2000;
static const OptionDef options[];
@@ -4361,7 +4361,7 @@ int main(int argc, char **argv)
av_register_all();
- show_banner(program_name, program_birth_year);
+ show_banner();
config_filename = "/etc/ffserver.conf";