aboutsummaryrefslogtreecommitdiff
path: root/nscd
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-02-09 23:18:22 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-02-09 23:18:22 +0000
commit59ba27a63ada3f46b71ec99a314dfac5a38ad6d2 (patch)
tree69edda6ebdfd8fe5d83991ab44723e07f6366420 /nscd
parentaf850b1c978bdca648ef9fb141e785d75f74d9bf (diff)
downloadglibc-59ba27a63ada3f46b71ec99a314dfac5a38ad6d2.zip
glibc-59ba27a63ada3f46b71ec99a314dfac5a38ad6d2.tar.gz
glibc-59ba27a63ada3f46b71ec99a314dfac5a38ad6d2.tar.bz2
Replace FSF snail mail address with URLs.
Diffstat (limited to 'nscd')
-rw-r--r--nscd/Makefile5
-rw-r--r--nscd/aicache.c3
-rw-r--r--nscd/cache.c3
-rw-r--r--nscd/connections.c3
-rw-r--r--nscd/dbg_log.c3
-rw-r--r--nscd/dbg_log.h5
-rw-r--r--nscd/gai.c3
-rw-r--r--nscd/getgrgid_r.c3
-rw-r--r--nscd/getgrnam_r.c3
-rw-r--r--nscd/gethstbyad_r.c3
-rw-r--r--nscd/gethstbynm3_r.c3
-rw-r--r--nscd/getpwnam_r.c3
-rw-r--r--nscd/getpwuid_r.c3
-rw-r--r--nscd/getsrvbynm_r.c3
-rw-r--r--nscd/getsrvbypt_r.c3
-rw-r--r--nscd/grpcache.c3
-rw-r--r--nscd/hstcache.c3
-rw-r--r--nscd/initgrcache.c3
-rw-r--r--nscd/mem.c3
-rw-r--r--nscd/netgroupcache.c3
-rw-r--r--nscd/nscd-client.h5
-rw-r--r--nscd/nscd.c3
-rw-r--r--nscd/nscd.h5
-rw-r--r--nscd/nscd_conf.c3
-rw-r--r--nscd/nscd_getai.c5
-rw-r--r--nscd/nscd_getgr_r.c5
-rw-r--r--nscd/nscd_gethst_r.c5
-rw-r--r--nscd/nscd_getpw_r.c5
-rw-r--r--nscd/nscd_getserv_r.c5
-rw-r--r--nscd/nscd_helper.c5
-rw-r--r--nscd/nscd_initgroups.c5
-rw-r--r--nscd/nscd_netgroup.c5
-rw-r--r--nscd/nscd_proto.h5
-rw-r--r--nscd/nscd_setup_thread.c3
-rw-r--r--nscd/nscd_stat.c5
-rw-r--r--nscd/pwdcache.c3
-rw-r--r--nscd/selinux.c5
-rw-r--r--nscd/selinux.h5
-rw-r--r--nscd/servicescache.c3
39 files changed, 55 insertions, 94 deletions
diff --git a/nscd/Makefile b/nscd/Makefile
index 284b4fc..f6965dd 100644
--- a/nscd/Makefile
+++ b/nscd/Makefile
@@ -12,9 +12,8 @@
# Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public
-# License along with the GNU C Library; if not, write to the Free
-# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-# 02111-1307 USA.
+# License along with the GNU C Library; if not, see
+# <http://www.gnu.org/licenses/>.
#
# Sub-makefile for nscd portion of the library.
diff --git a/nscd/aicache.c b/nscd/aicache.c
index e1f1244..a3de636 100644
--- a/nscd/aicache.c
+++ b/nscd/aicache.c
@@ -14,8 +14,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <errno.h>
diff --git a/nscd/cache.c b/nscd/cache.c
index 507ca78..96ade53 100644
--- a/nscd/cache.c
+++ b/nscd/cache.c
@@ -13,8 +13,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <atomic.h>
diff --git a/nscd/connections.c b/nscd/connections.c
index c741996..a8f287e 100644
--- a/nscd/connections.c
+++ b/nscd/connections.c
@@ -14,8 +14,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <alloca.h>
#include <assert.h>
diff --git a/nscd/dbg_log.c b/nscd/dbg_log.c
index fa99dac..1d1a440 100644
--- a/nscd/dbg_log.c
+++ b/nscd/dbg_log.c
@@ -13,8 +13,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <stdarg.h>
#include <stdio.h>
diff --git a/nscd/dbg_log.h b/nscd/dbg_log.h
index 6cec54c..057fd4f 100644
--- a/nscd/dbg_log.h
+++ b/nscd/dbg_log.h
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _DBG_LOG_H
#define _DBG_LOG_H 1
diff --git a/nscd/gai.c b/nscd/gai.c
index 7bea8c4..2df7ea7 100644
--- a/nscd/gai.c
+++ b/nscd/gai.c
@@ -13,8 +13,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <alloca.h>
#include <kernel-features.h>
diff --git a/nscd/getgrgid_r.c b/nscd/getgrgid_r.c
index 297ebe7..09b6cbf 100644
--- a/nscd/getgrgid_r.c
+++ b/nscd/getgrgid_r.c
@@ -13,8 +13,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <grp.h>
diff --git a/nscd/getgrnam_r.c b/nscd/getgrnam_r.c
index 55e69d0..53e572d 100644
--- a/nscd/getgrnam_r.c
+++ b/nscd/getgrnam_r.c
@@ -13,8 +13,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <grp.h>
diff --git a/nscd/gethstbyad_r.c b/nscd/gethstbyad_r.c
index 2e7a09c..bb9fab9 100644
--- a/nscd/gethstbyad_r.c
+++ b/nscd/gethstbyad_r.c
@@ -13,8 +13,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <netdb.h>
diff --git a/nscd/gethstbynm3_r.c b/nscd/gethstbynm3_r.c
index a917f89..86038ba 100644
--- a/nscd/gethstbynm3_r.c
+++ b/nscd/gethstbynm3_r.c
@@ -13,8 +13,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <ctype.h>
#include <errno.h>
diff --git a/nscd/getpwnam_r.c b/nscd/getpwnam_r.c
index a1f7c3c..7b6c5b3 100644
--- a/nscd/getpwnam_r.c
+++ b/nscd/getpwnam_r.c
@@ -13,8 +13,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <pwd.h>
diff --git a/nscd/getpwuid_r.c b/nscd/getpwuid_r.c
index 501c605..f3a01c6 100644
--- a/nscd/getpwuid_r.c
+++ b/nscd/getpwuid_r.c
@@ -13,8 +13,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <pwd.h>
diff --git a/nscd/getsrvbynm_r.c b/nscd/getsrvbynm_r.c
index ebd344a..c8b3744 100644
--- a/nscd/getsrvbynm_r.c
+++ b/nscd/getsrvbynm_r.c
@@ -13,8 +13,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <netdb.h>
diff --git a/nscd/getsrvbypt_r.c b/nscd/getsrvbypt_r.c
index 69abee1..cb73426 100644
--- a/nscd/getsrvbypt_r.c
+++ b/nscd/getsrvbypt_r.c
@@ -13,8 +13,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <netdb.h>
diff --git a/nscd/grpcache.c b/nscd/grpcache.c
index a698f36..d09badf 100644
--- a/nscd/grpcache.c
+++ b/nscd/grpcache.c
@@ -14,8 +14,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <alloca.h>
#include <assert.h>
diff --git a/nscd/hstcache.c b/nscd/hstcache.c
index c72feaa..a7ecdc7 100644
--- a/nscd/hstcache.c
+++ b/nscd/hstcache.c
@@ -14,8 +14,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <alloca.h>
#include <assert.h>
diff --git a/nscd/initgrcache.c b/nscd/initgrcache.c
index 2019991..255b121 100644
--- a/nscd/initgrcache.c
+++ b/nscd/initgrcache.c
@@ -14,8 +14,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <errno.h>
diff --git a/nscd/mem.c b/nscd/mem.c
index 8ba2ef6..3811b44 100644
--- a/nscd/mem.c
+++ b/nscd/mem.c
@@ -14,8 +14,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <errno.h>
diff --git a/nscd/netgroupcache.c b/nscd/netgroupcache.c
index 02cda13..276e66f 100644
--- a/nscd/netgroupcache.c
+++ b/nscd/netgroupcache.c
@@ -14,8 +14,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <alloca.h>
#include <assert.h>
diff --git a/nscd/nscd-client.h b/nscd/nscd-client.h
index b5cd2d2..e57a23c 100644
--- a/nscd/nscd-client.h
+++ b/nscd/nscd-client.h
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
/* This file defines everything that client code should need to
know to talk to the nscd daemon. */
diff --git a/nscd/nscd.c b/nscd/nscd.c
index f277eb7..9cd7273 100644
--- a/nscd/nscd.c
+++ b/nscd/nscd.c
@@ -13,8 +13,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
/* nscd - Name Service Cache Daemon. Caches passwd, group, and hosts. */
diff --git a/nscd/nscd.h b/nscd/nscd.h
index 9ac4379..86ac278 100644
--- a/nscd/nscd.h
+++ b/nscd/nscd.h
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _NSCD_H
#define _NSCD_H 1
diff --git a/nscd/nscd_conf.c b/nscd/nscd_conf.c
index 98b5928..07faf44 100644
--- a/nscd/nscd_conf.c
+++ b/nscd/nscd_conf.c
@@ -13,8 +13,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <ctype.h>
#include <errno.h>
diff --git a/nscd/nscd_getai.c b/nscd/nscd_getai.c
index d1c5cd1..40fe3d0 100644
--- a/nscd/nscd_getai.c
+++ b/nscd/nscd_getai.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <errno.h>
diff --git a/nscd/nscd_getgr_r.c b/nscd/nscd_getgr_r.c
index c2d204c..ac3d85f 100644
--- a/nscd/nscd_getgr_r.c
+++ b/nscd/nscd_getgr_r.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <alloca.h>
#include <assert.h>
diff --git a/nscd/nscd_gethst_r.c b/nscd/nscd_gethst_r.c
index 6ee142d..c1661f8 100644
--- a/nscd/nscd_gethst_r.c
+++ b/nscd/nscd_gethst_r.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <errno.h>
#include <resolv.h>
diff --git a/nscd/nscd_getpw_r.c b/nscd/nscd_getpw_r.c
index 8a4449d..409b672 100644
--- a/nscd/nscd_getpw_r.c
+++ b/nscd/nscd_getpw_r.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <errno.h>
diff --git a/nscd/nscd_getserv_r.c b/nscd/nscd_getserv_r.c
index 3b7dc4b..ff85d82 100644
--- a/nscd/nscd_getserv_r.c
+++ b/nscd/nscd_getserv_r.c
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <errno.h>
diff --git a/nscd/nscd_helper.c b/nscd/nscd_helper.c
index 365b599..92558b6 100644
--- a/nscd/nscd_helper.c
+++ b/nscd/nscd_helper.c
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <errno.h>
diff --git a/nscd/nscd_initgroups.c b/nscd/nscd_initgroups.c
index 5ff60c0..921a795 100644
--- a/nscd/nscd_initgroups.c
+++ b/nscd/nscd_initgroups.c
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <errno.h>
diff --git a/nscd/nscd_netgroup.c b/nscd/nscd_netgroup.c
index 8457cec..8f6925e 100644
--- a/nscd/nscd_netgroup.c
+++ b/nscd/nscd_netgroup.c
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <alloca.h>
#include <errno.h>
diff --git a/nscd/nscd_proto.h b/nscd/nscd_proto.h
index 742c154..25a69da 100644
--- a/nscd/nscd_proto.h
+++ b/nscd/nscd_proto.h
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _NSCD_PROTO_H
#define _NSCD_PROTO_H 1
diff --git a/nscd/nscd_setup_thread.c b/nscd/nscd_setup_thread.c
index 4b6671e..d4fd27b 100644
--- a/nscd/nscd_setup_thread.c
+++ b/nscd/nscd_setup_thread.c
@@ -14,8 +14,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <nscd.h>
diff --git a/nscd/nscd_stat.c b/nscd/nscd_stat.c
index 658fd56..cbc865d 100644
--- a/nscd/nscd_stat.c
+++ b/nscd/nscd_stat.c
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <errno.h>
#include <error.h>
diff --git a/nscd/pwdcache.c b/nscd/pwdcache.c
index e2ba09d..a8ea407 100644
--- a/nscd/pwdcache.c
+++ b/nscd/pwdcache.c
@@ -14,8 +14,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <alloca.h>
#include <assert.h>
diff --git a/nscd/selinux.c b/nscd/selinux.c
index f618640..18b9573 100644
--- a/nscd/selinux.c
+++ b/nscd/selinux.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include "config.h"
#include <error.h>
diff --git a/nscd/selinux.h b/nscd/selinux.h
index bc7e1e2..596b954 100644
--- a/nscd/selinux.h
+++ b/nscd/selinux.h
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _SELINUX_H
#define _SELINUX_H 1
diff --git a/nscd/servicescache.c b/nscd/servicescache.c
index a6337e3..0e7520d 100644
--- a/nscd/servicescache.c
+++ b/nscd/servicescache.c
@@ -14,8 +14,7 @@
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <alloca.h>
#include <assert.h>