Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b67dd1e

Browse files
author
Artur Zakirov
committed
Update copyright
1 parent 957de55 commit b67dd1e

File tree

13 files changed

+26
-13
lines changed

13 files changed

+26
-13
lines changed

backup.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
*
33
* backup.c: backup DB cluster, archived WAL
44
*
5-
* Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
5+
* Portions Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6+
* Portions Copyright (c) 2015-2017, Postgres Professional
67
*
78
*-------------------------------------------------------------------------
89
*/

catalog.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
*
33
* catalog.c: backup catalog opration
44
*
5-
* Copyright (c) 2009-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
5+
* Portions Copyright (c) 2009-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6+
* Portions Copyright (c) 2015-2017, Postgres Professional
67
*
78
*-------------------------------------------------------------------------
89
*/

data.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
*
33
* data.c: data parsing pages
44
*
5-
* Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
5+
* Portions Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6+
* Portions Copyright (c) 2015-2017, Postgres Professional
67
*
78
*-------------------------------------------------------------------------
89
*/

delete.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
*
33
* delete.c: delete backup files.
44
*
5-
* Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
5+
* Portions Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6+
* Portions Copyright (c) 2015-2017, Postgres Professional
67
*
78
*-------------------------------------------------------------------------
89
*/

dir.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
*
33
* dir.c: directory operation utility.
44
*
5-
* Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
5+
* Portions Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6+
* Portions Copyright (c) 2015-2017, Postgres Professional
67
*
78
*-------------------------------------------------------------------------
89
*/

init.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
*
33
* init.c: manage backup catalog.
44
*
5-
* Copyright (c) 2009-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
5+
* Portions Copyright (c) 2009-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6+
* Portions Copyright (c) 2015-2017, Postgres Professional
67
*
78
*-------------------------------------------------------------------------
89
*/

parsexlog.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*
66
* Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
77
* Portions Copyright (c) 1994, Regents of the University of California
8+
* Portions Copyright (c) 2015-2017, Postgres Professional
89
*
910
*-------------------------------------------------------------------------
1011
*/

pg_probackup.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
*
33
* pg_probackup.c: Backup/Recovery manager for PostgreSQL.
44
*
5-
* Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
5+
* Portions Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6+
* Portions Copyright (c) 2015-2017, Postgres Professional
67
*
78
*-------------------------------------------------------------------------
89
*/
@@ -15,7 +16,7 @@
1516
#include <time.h>
1617
#include <sys/stat.h>
1718

18-
const char *PROGRAM_VERSION = "1.0";
19+
const char *PROGRAM_VERSION = "1.0.1";
1920
const char *PROGRAM_URL = "https://github.com/postgrespro/pg_probackup";
2021
const char *PROGRAM_EMAIL = "https://github.com/postgrespro/pg_probackup/issues";
2122

pg_probackup.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
*
33
* pg_probackup.h: Backup/Recovery manager for PostgreSQL.
44
*
5-
* Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
5+
* Portions Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6+
* Portions Copyright (c) 2015-2017, Postgres Professional
67
*
78
*-------------------------------------------------------------------------
89
*/

restore.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
*
33
* restore.c: restore DB cluster and archived WAL.
44
*
5-
* Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
5+
* Portions Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6+
* Portions Copyright (c) 2015-2017, Postgres Professional
67
*
78
*-------------------------------------------------------------------------
89
*/

show.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
*
33
* show.c: show backup catalog.
44
*
5-
* Copyright (c) 2009-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
5+
* Portions Copyright (c) 2009-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6+
* Portions Copyright (c) 2015-2017, Postgres Professional
67
*
78
*-------------------------------------------------------------------------
89
*/

util.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
*
33
* util.c: log messages to log file or stderr, and misc code.
44
*
5-
* Copyright (c) 2009-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
5+
* Portions Copyright (c) 2009-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6+
* Portions Copyright (c) 2015-2017, Postgres Professional
67
*
78
*-------------------------------------------------------------------------
89
*/

validate.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
*
33
* validate.c: validate backup files.
44
*
5-
* Copyright (c) 2009-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
5+
* Portions Copyright (c) 2009-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6+
* Portions Copyright (c) 2015-2017, Postgres Professional
67
*
78
*-------------------------------------------------------------------------
89
*/

0 commit comments

Comments
 (0)