aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--COPYING2
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.am2
-rw-r--r--compat/Makefile.am2
-rw-r--r--compat/close.c9
-rw-r--r--compat/dbmclose.c10
-rw-r--r--compat/dbmdelete.c10
-rw-r--r--compat/dbmdirfno.c10
-rw-r--r--compat/dbmfetch.c10
-rw-r--r--compat/dbminit.c10
-rw-r--r--compat/dbmopen.c10
-rw-r--r--compat/dbmpagfno.c10
-rw-r--r--compat/dbmrdonly.c9
-rw-r--r--compat/dbmseq.c10
-rw-r--r--compat/dbmstore.c10
-rw-r--r--compat/delete.c10
-rw-r--r--compat/fetch.c10
-rw-r--r--compat/seq.c10
-rw-r--r--compat/store.c10
-rw-r--r--configure.ac2
-rw-r--r--doc/fdl.texi3
-rw-r--r--export/Makefile.am2
-rw-r--r--export/export.c7
-rw-r--r--src/Makefile.am4
-rw-r--r--src/bucket.c10
-rw-r--r--src/extern.h10
-rw-r--r--src/falloc.c10
-rw-r--r--src/findkey.c10
-rw-r--r--src/flatfile.c9
-rw-r--r--src/gdbm.proto5
-rw-r--r--src/gdbmclose.c10
-rw-r--r--src/gdbmconst.h10
-rw-r--r--src/gdbmdefs.h10
-rw-r--r--src/gdbmdelete.c10
-rw-r--r--src/gdbmerrno.c7
-rw-r--r--src/gdbmerrno.h7
-rw-r--r--src/gdbmexists.c9
-rw-r--r--src/gdbmfdesc.c9
-rw-r--r--src/gdbmfetch.c10
-rw-r--r--src/gdbmopen.c10
-rw-r--r--src/gdbmreorg.c10
-rw-r--r--src/gdbmseq.c10
-rw-r--r--src/gdbmsetopt.c9
-rw-r--r--src/gdbmstore.c10
-rw-r--r--src/gdbmsync.c10
-rw-r--r--src/global.c10
-rw-r--r--src/hash.c10
-rw-r--r--src/lock.c9
-rw-r--r--src/mmap.c9
-rw-r--r--src/proto.h10
-rw-r--r--src/systems.h10
-rw-r--r--src/testgdbm.c10
-rw-r--r--src/update.c10
-rw-r--r--src/version.c10
54 files changed, 226 insertions, 233 deletions
diff --git a/COPYING b/COPYING
index 9a2708d..bcdcf5e 100644
--- a/COPYING
+++ b/COPYING
@@ -1,7 +1,7 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ Copyright (C) 2007, 2011 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
diff --git a/ChangeLog b/ChangeLog
index 1464670..bdedc5a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2011-08-03 Sergey Poznyakoff <gray@gnu.org.ua>
+ * (all files): Update copyright headers.
+
+2011-08-03 Sergey Poznyakoff <gray@gnu.org.ua>
+
* doc/Makefile.am (check-fixmes): New rule.
* doc/gdbm.texinfo: Document flat format and related
functions.
diff --git a/Makefile.am b/Makefile.am
index 62a423b..0a9f2c3 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,5 @@
# This file is part of GDBM. -*- Makefile -*-
-# Copyright (C) 2007 Free Software Foundation, Inc.
+# Copyright (C) 2007, 2011 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/compat/Makefile.am b/compat/Makefile.am
index ae3b972..91bd820 100644
--- a/compat/Makefile.am
+++ b/compat/Makefile.am
@@ -1,5 +1,5 @@
# This file is part of GDBM. -*- Makefile -*-
-# Copyright (C) 2007 Free Software Foundation, Inc.
+# Copyright (C) 2007, 2011 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/compat/close.c b/compat/close.c
index 0df142f..1d1b13b 100644
--- a/compat/close.c
+++ b/compat/close.c
@@ -1,21 +1,20 @@
/* close.c - Close the "original" style database. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1993, 2007 Free Software Foundation, Inc.
+ Copyright (C) 1993, 2007, 2011 Free Software Foundation, Inc.
- This program is free software; you can redistribute it and/or modify
+ GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+ along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include system configuration before all else. */
#include "autoconf.h"
diff --git a/compat/dbmclose.c b/compat/dbmclose.c
index c0c3f61..b4114d3 100644
--- a/compat/dbmclose.c
+++ b/compat/dbmclose.c
@@ -1,21 +1,21 @@
/* dbmclose.c - The the dbm file. This is the NDBM interface. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1991, 1993, 2007, 2011 Free Software Foundation,
+ Inc.
- This program is free software; you can redistribute it and/or modify
+ GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+ along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include system configuration before all else. */
#include "autoconf.h"
diff --git a/compat/dbmdelete.c b/compat/dbmdelete.c
index c24d053..627e9a8 100644
--- a/compat/dbmdelete.c
+++ b/compat/dbmdelete.c
@@ -2,21 +2,21 @@
This is the NDBM unix interface name. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1991, 1993, 2007, 2011 Free Software Foundation,
+ Inc.
- This program is free software; you can redistribute it and/or modify
+ GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+ along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include system configuration before all else. */
#include "autoconf.h"
diff --git a/compat/dbmdirfno.c b/compat/dbmdirfno.c
index 79d9c24..20f2170 100644
--- a/compat/dbmdirfno.c
+++ b/compat/dbmdirfno.c
@@ -1,21 +1,21 @@
/* dbmdirfno.c - The .pag file number for NDBM interface. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1991, 1993, 2007, 2011 Free Software Foundation,
+ Inc.
- This program is free software; you can redistribute it and/or modify
+ GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+ along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include system configuration before all else. */
#include "autoconf.h"
diff --git a/compat/dbmfetch.c b/compat/dbmfetch.c
index 54784c4..e779d1a 100644
--- a/compat/dbmfetch.c
+++ b/compat/dbmfetch.c
@@ -1,21 +1,21 @@
/* dbmfetch.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 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1991, 1993, 2007, 2011 Free Software Foundation,
+ Inc.
- This program is free software; you can redistribute it and/or modify
+ GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+ along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include system configuration before all else. */
#include "autoconf.h"
diff --git a/compat/dbminit.c b/compat/dbminit.c
index 641e11b..eb21292 100644
--- a/compat/dbminit.c
+++ b/compat/dbminit.c
@@ -2,21 +2,21 @@
DBM interface. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1991, 1993, 2007, 2011 Free Software Foundation,
+ Inc.
- This program is free software; you can redistribute it and/or modify
+ GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+ along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include system configuration before all else. */
#include "autoconf.h"
diff --git a/compat/dbmopen.c b/compat/dbmopen.c
index d89080b..ff2e981 100644
--- a/compat/dbmopen.c
+++ b/compat/dbmopen.c
@@ -2,21 +2,21 @@
NDBM interface for dbm use. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1991, 1993, 2007, 2011 Free Software Foundation,
+ Inc.
- This program is free software; you can redistribute it and/or modify
+ GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+ along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include system configuration before all else. */
#include "autoconf.h"
diff --git a/compat/dbmpagfno.c b/compat/dbmpagfno.c
index 8532c03..b2d00ee 100644
--- a/compat/dbmpagfno.c
+++ b/compat/dbmpagfno.c
@@ -1,21 +1,21 @@
/* dbmpagfno.c - The .pag file number for NDBM interface. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1991, 1993, 2007, 2011 Free Software Foundation,
+ Inc.
- This program is free software; you can redistribute it and/or modify
+ GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+ along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include system configuration before all else. */
#include "autoconf.h"
diff --git a/compat/dbmrdonly.c b/compat/dbmrdonly.c
index 33e3274..79dbfb1 100644
--- a/compat/dbmrdonly.c
+++ b/compat/dbmrdonly.c
@@ -1,21 +1,20 @@
/* dbmrdonly.c - Check to see if a database is read only, NDBM style. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1993, 2007 Free Software Foundation, Inc.
+ Copyright (C) 1993, 2007, 2011 Free Software Foundation, Inc.
- This program is free software; you can redistribute it and/or modify
+ GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+ along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include system configuration before all else. */
#include "autoconf.h"
diff --git a/compat/dbmseq.c b/compat/dbmseq.c
index 7e1bed5..afbb980 100644
--- a/compat/dbmseq.c
+++ b/compat/dbmseq.c
@@ -2,21 +2,21 @@
interface. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1991, 1993, 2007, 2011 Free Software Foundation,
+ Inc.
- This program is free software; you can redistribute it and/or modify
+ GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+ along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include system configuration before all else. */
#include "autoconf.h"
diff --git a/compat/dbmstore.c b/compat/dbmstore.c
index 9d904ff..b07bbdc 100644
--- a/compat/dbmstore.c
+++ b/compat/dbmstore.c
@@ -1,21 +1,21 @@
/* dbmstore.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 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1991, 1993, 2007, 2011 Free Software Foundation,
+ Inc.
- This program is free software; you can redistribute it and/or modify
+ GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+ along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include system configuration before all else. */
#include "autoconf.h"
diff --git a/compat/delete.c b/compat/delete.c
index 42321d1..a40e173 100644
--- a/compat/delete.c
+++ b/compat/delete.c
@@ -2,21 +2,21 @@
This is the original unix interface name. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1991, 1993, 2007, 2011 Free Software Foundation,
+ Inc.
- This program is free software; you can redistribute it and/or modify
+ GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+ along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include system configuration before all else. */
#include "autoconf.h"
diff --git a/compat/fetch.c b/compat/fetch.c
index 594627d..a0d03ae 100644
--- a/compat/fetch.c
+++ b/compat/fetch.c
@@ -1,21 +1,21 @@
/* fetch.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 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1991, 1993, 2007, 2011 Free Software Foundation,
+ Inc.
- This program is free software; you can redistribute it and/or modify
+ GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+ along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include system configuration before all else. */
#include "autoconf.h"
diff --git a/compat/seq.c b/compat/seq.c
index b4c8b46..f5a744f 100644
--- a/compat/seq.c
+++ b/compat/seq.c
@@ -2,21 +2,21 @@
user-visable routines that are used together. This is the DBM interface. */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1990, 1991, 1993, 2007 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1991, 1993, 2007, 2011 Free Software Foundation,
+ Inc.
- This program is free software; you can redistribute it and/or modify
+ GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+ along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include system configuration before all else. */
#include "autoconf.h"
diff --git a/compat/store.c b/compat/store.c
index 2024420..7f21b9d 100644
--- a/compat/store.c
+++ b/compat/store.c
@@ -1,21 +1,21 @@
/* store.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 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1991, 1993, 2007, 2011 Free Software Foundation,
+ Inc.
- This program is free software; you can redistribute it and/or modify
+ GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GDBM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+ along with GDBM. If not, see <http://www.gnu.org/licenses/>. */
/* Include system configuration before all else. */
#include "autoconf.h"
diff --git a/configure.ac b/configure.ac
index 067d2e8..3e7f09e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
# This file is part of GDBM. -*- autoconf -*-
-# Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+# Copyright (C) 2007, 2009, 2011 Free Software Foundation, Inc.
#