From 5c14a7955ee8828dc06456b92cd030e512bccabf Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sat, 11 Aug 2007 13:11:30 +0000 Subject: [PATCH] Make show-license exit 0. patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 10070 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 2 +- ffserver.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index f3e880920e..40aacd7017 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -3760,7 +3760,7 @@ static void opt_show_license(void) "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n" ); #endif - exit(1); + exit(0); } /** diff --git a/ffserver.c b/ffserver.c index b53c0ecee3..c397d4b0de 100644 --- a/ffserver.c +++ b/ffserver.c @@ -4439,7 +4439,7 @@ int main(int argc, char **argv) switch(c) { case 'L': show_license(); - exit(1); + exit(0); case '?': case 'h': show_help();