aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2017-01-02 13:53:52 +0200
committerSergey Poznyakoff <gray@gnu.org>2017-01-02 13:53:52 +0200
commit35a98d0826c8dbb7cc02b747cd8ce8b6dd71cd1a (patch)
tree75d52a94ed57a8ebe9e22c78a3a337ca545b65d1 /src
parent9ca58064e8a10546004c9a376a63105698a72d3c (diff)
downloadgdbm-35a98d0826c8dbb7cc02b747cd8ce8b6dd71cd1a.tar.gz
gdbm-35a98d0826c8dbb7cc02b747cd8ce8b6dd71cd1a.tar.bz2
Happy GNU Year
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
-rw-r--r--src/base64.c2
-rw-r--r--src/bucket.c4
-rw-r--r--src/datconv.c4
-rw-r--r--src/debug.c2
-rw-r--r--src/err.c2
-rw-r--r--src/falloc.c4
-rw-r--r--src/findkey.c4
-rw-r--r--src/fullio.c2
-rw-r--r--src/gdbm.h.in3
-rw-r--r--src/gdbm.magic2
-rw-r--r--src/gdbm_dump.c2
-rw-r--r--src/gdbm_load.c2
-rw-r--r--src/gdbmapp.h2
-rw-r--r--src/gdbmclose.c4
-rw-r--r--src/gdbmconst.h4
-rw-r--r--src/gdbmcount.c4
-rw-r--r--src/gdbmdefs.h4
-rw-r--r--src/gdbmdelete.c4
-rw-r--r--src/gdbmdump.c2
-rw-r--r--src/gdbmerrno.c3
-rw-r--r--src/gdbmexists.c3
-rw-r--r--src/gdbmexp.c3
-rw-r--r--src/gdbmfdesc.c3
-rw-r--r--src/gdbmfetch.c4
-rw-r--r--src/gdbmimp.c3
-rw-r--r--src/gdbmload.c2
-rw-r--r--src/gdbmopen.c4
-rw-r--r--src/gdbmreorg.c4
-rw-r--r--src/gdbmseq.c4
-rw-r--r--src/gdbmsetopt.c4
-rw-r--r--src/gdbmstore.c4
-rw-r--r--src/gdbmsync.c4
-rw-r--r--src/gdbmtool.c4
-rw-r--r--src/gdbmtool.h4
-rw-r--r--src/gettext.h4
-rw-r--r--src/gram.y4
-rw-r--r--src/hash.c4
-rw-r--r--src/input-rl.c2
-rw-r--r--src/input-std.c2
-rw-r--r--src/lex.l4
-rw-r--r--src/lock.c2
-rw-r--r--src/mem.c2
-rw-r--r--src/mmap.c3
-rw-r--r--src/parseopt.c4
-rw-r--r--src/progname.c2
-rw-r--r--src/proto.h4
-rw-r--r--src/recover.c2
-rw-r--r--src/systems.h4
-rw-r--r--src/update.c4
-rw-r--r--src/util.c4
-rw-r--r--src/var.c4
-rw-r--r--src/version.c4
53 files changed, 89 insertions, 82 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index fd82cab..bf3c380 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,5 +1,5 @@
# This file is part of GDBM. -*- Makefile -*-
-# Copyright (C) 2007, 2011, 2016 Free Software Foundation, Inc.
+# Copyright (C) 2007, 2011, 2016-2017 Free Software Foundation, Inc.
#
# GDBM is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/base64.c b/src/base64.c
index b34e788..44a6dc6 100644
--- a/src/base64.c
+++ b/src/base64.c
@@ -1,5 +1,5 @@
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 2011, 2013, 2016 Free Software Foundation, Inc.
+ Copyright (C) 2011, 2013, 2016-2017 Free Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/bucket.c b/src/bucket.c
index 6e3debe..135f4d9 100644
--- a/src/bucket.c
+++ b/src/bucket.c
@@ -1,8 +1,8 @@
/* bucket.c - The routines for playing with hash buckets. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2016-2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/datconv.c b/src/datconv.c
index c4adfa4..72c0b8a 100644
--- a/src/datconv.c
+++ b/src/datconv.c
@@ -1,6 +1,6 @@
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013 Free Software Foundation,
- Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2017 Free Software
+ Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/debug.c b/src/debug.c
index d18616f..f2b140e 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -1,5 +1,5 @@
/* This file is part of GDBM, the GNU data base manager.
- Copyright 2016 Free Software Foundation, Inc.
+ Copyright 2016-2017 Free Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/err.c b/src/err.c
index cbd4191..074d594 100644
--- a/src/err.c
+++ b/src/err.c
@@ -1,5 +1,5 @@
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 2011, 2013 Free Software Foundation, Inc.
+ Copyright (C) 2011, 2013, 2017 Free Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/falloc.c b/src/falloc.c
index 516a197..fa30859 100644
--- a/src/falloc.c
+++ b/src/falloc.c
@@ -1,8 +1,8 @@
/* falloc.c - The file space management routines for dbm. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 1994, 2007, 2011, 2013 Free Software
- Foundation, Inc.
+ Copyright (C) 1990-1991, 1993-1994, 2007, 2011, 2013, 2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/findkey.c b/src/findkey.c
index b2e0e8c..63f9de0 100644
--- a/src/findkey.c
+++ b/src/findkey.c
@@ -1,8 +1,8 @@
/* findkey.c - The routine that finds a key entry in the file. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2016-2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/fullio.c b/src/fullio.c
index 0b65187..5999196 100644
--- a/src/fullio.c
+++ b/src/fullio.c
@@ -1,5 +1,5 @@
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 2011, 2013 Free Software Foundation, Inc.
+ Copyright (C) 2011, 2013, 2017 Free Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbm.h.in b/src/gdbm.h.in
index a9a05f2..e9b7b1b 100644
--- a/src/gdbm.h.in
+++ b/src/gdbm.h.in
@@ -1,7 +1,8 @@
/* gdbm.h - The include file for dbm users. -*- c -*- */
/* This file is part of GDBM, the GNU data base manager, by Philip A. Nelson.
- Copyright (C) 1990, 1991, 1993, 2011, 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2011, 2016-2017 Free Software
+ Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbm.magic b/src/gdbm.magic
index 153b1ce..e0fa59f 100644
--- a/src/gdbm.magic
+++ b/src/gdbm.magic
@@ -1,5 +1,5 @@
# A "magic" file for file(1).
-# Copyright (C) 2016 Free Software Foundation, Inc.
+# Copyright (C) 2016-2017 Free Software Foundation, Inc.
#
# GDBM is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/gdbm_dump.c b/src/gdbm_dump.c
index ad251d5..81dbc2c 100644
--- a/src/gdbm_dump.c
+++ b/src/gdbm_dump.c
@@ -1,5 +1,5 @@
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 2011, 2013 Free Software Foundation, Inc.
+ Copyright (C) 2011, 2013, 2017 Free Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbm_load.c b/src/gdbm_load.c
index c24e3c2..b81ed61 100644
--- a/src/gdbm_load.c
+++ b/src/gdbm_load.c
@@ -1,5 +1,5 @@
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 2011, 2013, 2016 Free Software Foundation, Inc.
+ Copyright (C) 2011, 2013, 2016-2017 Free Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmapp.h b/src/gdbmapp.h
index 715f948..4d739de 100644
--- a/src/gdbmapp.h
+++ b/src/gdbmapp.h
@@ -1,5 +1,5 @@
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 2011, 2013 Free Software Foundation, Inc.
+ Copyright (C) 2011, 2013, 2017 Free Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmclose.c b/src/gdbmclose.c
index adf654d..ed69608 100644
--- a/src/gdbmclose.c
+++ b/src/gdbmclose.c
@@ -1,8 +1,8 @@
/* gdbmclose.c - Close a previously opened dbm file. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013 Free Software Foundation,
- Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2017 Free Software
+ Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmconst.h b/src/gdbmconst.h
index 66b0fb2..0679e12 100644
--- a/src/gdbmconst.h
+++ b/src/gdbmconst.h
@@ -1,8 +1,8 @@
/* gdbmconst.h - The constants defined for use in gdbm. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2016-2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmcount.c b/src/gdbmcount.c
index b84696c..a604fe0 100644
--- a/src/gdbmcount.c
+++ b/src/gdbmcount.c
@@ -1,8 +1,8 @@
/* gdbmcount.c - get number of items in a gdbm file. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1993, 1994, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1993-1994, 2007, 2011, 2013, 2016-2017 Free Software
+ Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmdefs.h b/src/gdbmdefs.h
index 286f3fc..3dd0705 100644
--- a/src/gdbmdefs.h
+++ b/src/gdbmdefs.h
@@ -1,8 +1,8 @@
/* gdbmdefs.h - The include file for dbm. Defines structure and constants. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2016-2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmdelete.c b/src/gdbmdelete.c
index cb64210..fcc2878 100644
--- a/src/gdbmdelete.c
+++ b/src/gdbmdelete.c
@@ -1,8 +1,8 @@
/* gdbmdelete.c - Remove the key and its associated data from the database. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2016-2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmdump.c b/src/gdbmdump.c
index 4779acb..093a4e9 100644
--- a/src/gdbmdump.c
+++ b/src/gdbmdump.c
@@ -1,5 +1,5 @@
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 2011, 2013, 2016 Free Software Foundation, Inc.
+ Copyright (C) 2011, 2013, 2016-2017 Free Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmerrno.c b/src/gdbmerrno.c
index 5a38cc8..87c6401 100644
--- a/src/gdbmerrno.c
+++ b/src/gdbmerrno.c
@@ -1,7 +1,8 @@
/* gdbmerrno.c - convert gdbm errors into english. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1993, 2007, 2011, 2013, 2016 Free Software Foundation, Inc.
+ Copyright (C) 1993, 2007, 2011, 2013, 2016-2017 Free Software
+ Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmexists.c b/src/gdbmexists.c
index 70ee989..a29bc4c 100644
--- a/src/gdbmexists.c
+++ b/src/gdbmexists.c
@@ -1,7 +1,8 @@
/* gdbmexists.c - Check to see if a key exists */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1993, 2007, 2011, 2013, 2016 Free Software Foundation, Inc.
+ Copyright (C) 1993, 2007, 2011, 2013, 2016-2017 Free Software
+ Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmexp.c b/src/gdbmexp.c
index 668d6a0..457f638 100644
--- a/src/gdbmexp.c
+++ b/src/gdbmexp.c
@@ -1,7 +1,8 @@
/* gdbmexp.c - Export a GDBM database. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 2007, 2011, 2013, 2016 Free Software Foundation, Inc.
+ Copyright (C) 2007, 2011, 2013, 2016-2017 Free Software Foundation,
+ Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmfdesc.c b/src/gdbmfdesc.c
index c6db1ef..a4a5317 100644
--- a/src/gdbmfdesc.c
+++ b/src/gdbmfdesc.c
@@ -1,7 +1,8 @@
/* gdbfdesc.c - return the file descriptor associated with the database. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1999, 2007, 2011, 2013 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2007, 2011, 2013, 2017 Free Software Foundation,
+ Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmfetch.c b/src/gdbmfetch.c
index 6a2fb25..5f71846 100644
--- a/src/gdbmfetch.c
+++ b/src/gdbmfetch.c
@@ -1,8 +1,8 @@
/* gdbmfetch.c - Find a key and return the associated data. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011,
- 2013, 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2016-2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmimp.c b/src/gdbmimp.c
index 09a408f..586a42d 100644
--- a/src/gdbmimp.c
+++ b/src/gdbmimp.c
@@ -1,7 +1,8 @@
/* gdbmimp.c - Import a GDBM database. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 2007, 2011, 2013, 2016 Free Software Foundation, Inc.
+ Copyright (C) 2007, 2011, 2013, 2016-2017 Free Software Foundation,
+ Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmload.c b/src/gdbmload.c
index 7711d1e..f634987 100644
--- a/src/gdbmload.c
+++ b/src/gdbmload.c
@@ -1,5 +1,5 @@
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 2011, 2013, 2016 Free Software Foundation, Inc.
+ Copyright (C) 2011, 2013, 2016-2017 Free Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmopen.c b/src/gdbmopen.c
index e444bc1..80474a6 100644
--- a/src/gdbmopen.c
+++ b/src/gdbmopen.c
@@ -1,8 +1,8 @@
/* gdbmopen.c - Open the dbm file and initialize data structures for use. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2016-2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmreorg.c b/src/gdbmreorg.c
index f7723c1..7719c04 100644
--- a/src/gdbmreorg.c
+++ b/src/gdbmreorg.c
@@ -1,8 +1,8 @@
/* gdbmreorg.c - Reorganize the database file. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2016-2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmseq.c b/src/gdbmseq.c
index 29a34b1..4b983b4 100644
--- a/src/gdbmseq.c
+++ b/src/gdbmseq.c
@@ -1,8 +1,8 @@
/* gdbmseq.c - Routines to visit all keys. Not in sorted order. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2016-2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmsetopt.c b/src/gdbmsetopt.c
index ddd033e..db19f5c 100644
--- a/src/gdbmsetopt.c
+++ b/src/gdbmsetopt.c
@@ -1,8 +1,8 @@
/* gdbmsetopt.c - set options pertaining to a GDBM descriptor. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1993, 1994, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1993-1994, 2007, 2011, 2013, 2016-2017 Free Software
+ Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmstore.c b/src/gdbmstore.c
index 404687c..c7c68bf 100644
--- a/src/gdbmstore.c
+++ b/src/gdbmstore.c
@@ -1,8 +1,8 @@
/* gdbmstore.c - Add a new key/data pair to the database. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2016-2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmsync.c b/src/gdbmsync.c
index fcc1b41..001ad85 100644
--- a/src/gdbmsync.c
+++ b/src/gdbmsync.c
@@ -1,8 +1,8 @@
/* gdbmsync.c - Sync the disk with the in memory state. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2016-2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmtool.c b/src/gdbmtool.c
index 53b4e36..f1300b8 100644
--- a/src/gdbmtool.c
+++ b/src/gdbmtool.c
@@ -1,6 +1,6 @@
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2016-2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gdbmtool.h b/src/gdbmtool.h
index 465e3b6..3e7e737 100644
--- a/src/gdbmtool.h
+++ b/src/gdbmtool.h
@@ -1,6 +1,6 @@
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2016-2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/gettext.h b/src/gettext.h
index 35a269d..4d3779b 100644
--- a/src/gettext.h
+++ b/src/gettext.h
@@ -1,6 +1,6 @@
/* Convenience header for conditional use of GNU <libintl.h>.
- Copyright (C) 1995-1998, 2000-2002, 2004-2006, 2009,
- 2013 Free Software Foundation, Inc.
+ Copyright (C) 1995-1998, 2000-2002, 2004-2006, 2009, 2013, 2017 Free
+ Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published
diff --git a/src/gram.y b/src/gram.y
index 582c229..a8a2c2c 100644
--- a/src/gram.y
+++ b/src/gram.y
@@ -1,7 +1,7 @@
%{
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2016-2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/hash.c b/src/hash.c
index 7b86849..e55e627 100644
--- a/src/hash.c
+++ b/src/hash.c
@@ -1,8 +1,8 @@
/* hash.c - The gdbm hash function. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013 Free Software Foundation,
- Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2017 Free Software
+ Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/input-rl.c b/src/input-rl.c
index f435ed4..d1cf4d7 100644
--- a/src/input-rl.c
+++ b/src/input-rl.c
@@ -1,5 +1,5 @@
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 2016 Free Software Foundation, Inc.
+ Copyright (C) 2016-2017 Free Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/input-std.c b/src/input-std.c
index 4508368..973bfe3 100644
--- a/src/input-std.c
+++ b/src/input-std.c
@@ -1,5 +1,5 @@
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 2016 Free Software Foundation, Inc.
+ Copyright (C) 2016-2017 Free Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/lex.l b/src/lex.l
index 236474d..5ccf36c 100644
--- a/src/lex.l
+++ b/src/lex.l
@@ -1,7 +1,7 @@
%{
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013,
- 2016 Free Software Foundation, Inc.
+ Copyright (C) 1990-1991, 1993, 2007, 2011, 2013, 2016-2017 Free
+ Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/lock.c b/src/lock.c
index 0168ff9..9f2271a 100644
--- a/src/lock.c
+++ b/