summaryrefslogtreecommitdiff
path: root/xdelta3/xdelta3-main.h
diff options
context:
space:
mode:
Diffstat (limited to 'xdelta3/xdelta3-main.h')
-rw-r--r--xdelta3/xdelta3-main.h39
1 files changed, 18 insertions, 21 deletions
diff --git a/xdelta3/xdelta3-main.h b/xdelta3/xdelta3-main.h
index fac5d8d..f05bdab 100644
--- a/xdelta3/xdelta3-main.h
+++ b/xdelta3/xdelta3-main.h
@@ -1,21 +1,18 @@
1/* xdelta3 - delta compression tools and library 1/* xdelta3 - delta compression tools and library
2 * Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2 Copyright 2016 Joshua MacDonald
3 * 2009, 2010, 2011, 2012, 2013, 2014, 2015 Joshua P. MacDonald 3
4 * 4 Licensed under the Apache License, Version 2.0 (the "License");
5 * This program is free software; you can redistribute it and/or modify 5 you may not use this file except in compliance with the License.
6 * it under the terms of the GNU General Public License as published by 6 You may obtain a copy of the License at
7 * the Free Software Foundation; either version 2 of the License, or 7
8 * (at your option) any later version. 8 http://www.apache.org/licenses/LICENSE-2.0
9 * 9
10 * This program is distributed in the hope that it will be useful, 10 Unless required by applicable law or agreed to in writing, software
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 distributed under the License is distributed on an "AS IS" BASIS,
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * GNU General Public License for more details. 13 See the License for the specific language governing permissions and
14 * 14 limitations under the License.
15 * You should have received a copy of the GNU General Public License 15*/
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19 16
20/* This is all the extra stuff you need for convenience to users in a 17/* This is all the extra stuff you need for convenience to users in a
21 * command line application. It contains these major components: 18 * command line application. It contains these major components:
@@ -337,11 +334,11 @@ xprintf (const char *fmt, ...)
337static int 334static int
338main_version (void) 335main_version (void)
339{ 336{
340 /* $Format: " XPR(NTR \"Xdelta version $Xdelta3Version$, Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, Joshua MacDonald\\n\");" $ */ 337 /* $Format: " XPR(NTR \"Xdelta version $Xdelta3Version$, Copyright (C) Joshua MacDonald\\n\");" $ */
341 XPR(NTR "Xdelta version 3.0.11, Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015 Joshua MacDonald\n"); 338 XPR(NTR "Xdelta version 3.0.12, Copyright (C) Joshua MacDonald\n");
342 XPR(NTR "Xdelta comes with ABSOLUTELY NO WARRANTY.\n"); 339 XPR(NTR "Xdelta comes with ABSOLUTELY NO WARRANTY.\n");
343 XPR(NTR "This is free software, and you are welcome to redistribute it\n"); 340 XPR(NTR "Licensed under the Apache License, Version 2.0\n");
344 XPR(NTR "under certain conditions; see \"COPYING\" for details.\n"); 341 XPR(NTR "See \"LICENSE\" for details.\n");
345 return EXIT_SUCCESS; 342 return EXIT_SUCCESS;
346} 343}
347 344