From 1d25779284fe1ba08ecd57e647292a9deb241376 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 3 Jan 2017 13:48:53 -0500 Subject: Update copyright via script for 2017 --- src/include/pgtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include/pgtime.h') diff --git a/src/include/pgtime.h b/src/include/pgtime.h index 182da3e645..dcd073076e 100644 --- a/src/include/pgtime.h +++ b/src/include/pgtime.h @@ -3,7 +3,7 @@ * pgtime.h * PostgreSQL internal timezone library * - * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group * * IDENTIFICATION * src/include/pgtime.h -- cgit v1.2.3 From 96e0ccc2b589eda26585ed2a8dabf34b16747c1a Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Tue, 24 Jan 2017 09:36:17 -0500 Subject: Fix incorrect comment: pgtime's tm_mon is 1-based, not 0-based. The comments in formatting.c already said that tm_mon was 1-based not 0-based, but the comments here disagreed. Dmitry Fedin --- src/include/pgtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include/pgtime.h') diff --git a/src/include/pgtime.h b/src/include/pgtime.h index dcd073076e..52b54b920a 100644 --- a/src/include/pgtime.h +++ b/src/include/pgtime.h @@ -28,7 +28,7 @@ struct pg_tm int tm_min; int tm_hour; int tm_mday; - int tm_mon; /* origin 0, not 1 */ + int tm_mon; /* origin 1, not 0! */ int tm_year; /* relative to 1900 */ int tm_wday; int tm_yday; -- cgit v1.2.3