aboutsummaryrefslogtreecommitdiff
path: root/compat
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2011-08-03 13:10:23 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2011-08-03 13:10:23 +0000
commit50f332ec721165bf092f299bfd5379a7e05f0354 (patch)
tree22a32811f900ad5aec6650e3b25029c7b6d6eabe /compat
parent5c31cefba8301ee08757c15079312bdcb8c38135 (diff)
downloadgdbm-50f332ec721165bf092f299bfd5379a7e05f0354.tar.gz
gdbm-50f332ec721165bf092f299bfd5379a7e05f0354.tar.bz2
Update copyright headers.
Diffstat (limited to 'compat')
-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
16 files changed, 74 insertions, 76 deletions
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"

Return to:

Send suggestions and report system problems to the System administrator.