aboutsummaryrefslogtreecommitdiff
path: root/elf
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 /elf
parentaf850b1c978bdca648ef9fb141e785d75f74d9bf (diff)
downloadglibc-59ba27a63ada3f46b71ec99a314dfac5a38ad6d2.tar.xz
glibc-59ba27a63ada3f46b71ec99a314dfac5a38ad6d2.zip
Replace FSF snail mail address with URLs.
Diffstat (limited to 'elf')
-rw-r--r--elf/Makefile5
-rw-r--r--elf/cache.c3
-rw-r--r--elf/check-execstack.c5
-rw-r--r--elf/check-localplt.c5
-rw-r--r--elf/check-textrel.c5
-rw-r--r--elf/chroot_canon.c3
-rw-r--r--elf/dl-addr.c5
-rw-r--r--elf/dl-cache.c5
-rw-r--r--elf/dl-caller.c5
-rw-r--r--elf/dl-close.c5
-rw-r--r--elf/dl-conflict.c5
-rw-r--r--elf/dl-debug.c5
-rw-r--r--elf/dl-deps.c5
-rw-r--r--elf/dl-dst.h5
-rw-r--r--elf/dl-environ.c5
-rw-r--r--elf/dl-error.c5
-rw-r--r--elf/dl-execstack.c5
-rw-r--r--elf/dl-fini.c5
-rw-r--r--elf/dl-fptr.c5
-rw-r--r--elf/dl-init.c5
-rw-r--r--elf/dl-iteratephdr.c5
-rw-r--r--elf/dl-libc.c5
-rw-r--r--elf/dl-load.c5
-rw-r--r--elf/dl-lookup.c5
-rw-r--r--elf/dl-minimal.c5
-rw-r--r--elf/dl-misc.c5
-rw-r--r--elf/dl-object.c5
-rw-r--r--elf/dl-open.c5
-rw-r--r--elf/dl-origin.c5
-rw-r--r--elf/dl-profile.c5
-rw-r--r--elf/dl-profstub.c5
-rw-r--r--elf/dl-reloc.c5
-rw-r--r--elf/dl-runtime.c5
-rw-r--r--elf/dl-scope.c5
-rw-r--r--elf/dl-support.c5
-rw-r--r--elf/dl-sym.c5
-rw-r--r--elf/dl-symaddr.c5
-rw-r--r--elf/dl-sysdep.c5
-rw-r--r--elf/dl-tls.c5
-rw-r--r--elf/dl-tsd.c5
-rw-r--r--elf/dl-version.c5
-rw-r--r--elf/do-rel.h5
-rw-r--r--elf/dynamic-link.h5
-rw-r--r--elf/elf.h5
-rw-r--r--elf/enbl-secure.c5
-rw-r--r--elf/interp.c5
-rw-r--r--elf/ldconfig.c3
-rw-r--r--elf/ldd.bash.in5
-rw-r--r--elf/link.h5
-rw-r--r--elf/pldd-xx.c5
-rw-r--r--elf/pldd.c5
-rw-r--r--elf/readelflib.c5
-rw-r--r--elf/readlib.c3
-rw-r--r--elf/rtld-Rules5
-rw-r--r--elf/rtld.c5
-rw-r--r--elf/sln.c5
-rw-r--r--elf/sotruss-lib.c5
-rwxr-xr-xelf/sotruss.ksh5
-rw-r--r--elf/sprof.c5
-rw-r--r--elf/tlsdeschtab.h5
-rw-r--r--elf/tst-align.c5
-rw-r--r--elf/tst-align2.c5
-rw-r--r--elf/tst-alignmod.c5
-rw-r--r--elf/tst-alignmod2.c5
-rw-r--r--elf/tst-dlmodcount.c5
-rw-r--r--elf/tst-dlopenrpath.c5
-rw-r--r--elf/tst-dlopenrpathmod.c5
-rwxr-xr-xelf/tst-pathopt.sh5
-rw-r--r--elf/tst-stackguard1.c5
-rw-r--r--elf/vismain.c5
-rw-r--r--elf/vismod1.c5
-rw-r--r--elf/vismod2.c5
-rw-r--r--elf/vismod3.c5
73 files changed, 142 insertions, 215 deletions
diff --git a/elf/Makefile b/elf/Makefile
index 3f1772a523..8234ba7a51 100644
--- a/elf/Makefile
+++ b/elf/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/>.
# Makefile for elf subdirectory of GNU C Library.
diff --git a/elf/cache.c b/elf/cache.c
index 393b4e5939..dadab9132b 100644
--- a/elf/cache.c
+++ b/elf/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 <errno.h>
#include <error.h>
diff --git a/elf/check-execstack.c b/elf/check-execstack.c
index 96e481208d..6a5c4d9b9a 100644
--- a/elf/check-execstack.c
+++ b/elf/check-execstack.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 <byteswap.h>
#include <elf.h>
diff --git a/elf/check-localplt.c b/elf/check-localplt.c
index b4358a8a3f..edab1d2d0a 100644
--- a/elf/check-localplt.c
+++ b/elf/check-localplt.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 <byteswap.h>
#include <elf.h>
diff --git a/elf/check-textrel.c b/elf/check-textrel.c
index 1a9a5ecdff..6372019a9c 100644
--- a/elf/check-textrel.c
+++ b/elf/check-textrel.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 <byteswap.h>
#include <elf.h>
diff --git a/elf/chroot_canon.c b/elf/chroot_canon.c
index f8f3370493..a7a7d9b225 100644
--- a/elf/chroot_canon.c
+++ b/elf/chroot_canon.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 <stdlib.h>
#include <string.h>
diff --git a/elf/dl-addr.c b/elf/dl-addr.c
index 788225635e..498faf1b2a 100644
--- a/elf/dl-addr.c
+++ b/elf/dl-addr.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 <dlfcn.h>
#include <stddef.h>
diff --git a/elf/dl-cache.c b/elf/dl-cache.c
index 5a01c2ed1d..2e6f88b326 100644
--- a/elf/dl-cache.c
+++ b/elf/dl-cache.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 <unistd.h>
diff --git a/elf/dl-caller.c b/elf/dl-caller.c
index 416d4127d2..14dd10479c 100644
--- a/elf/dl-caller.c
+++ b/elf/dl-caller.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 <ldsodefs.h>
diff --git a/elf/dl-close.c b/elf/dl-close.c
index 8fb55d0fbc..d232294665 100644
--- a/elf/dl-close.c
+++ b/elf/dl-close.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 <dlfcn.h>
diff --git a/elf/dl-conflict.c b/elf/dl-conflict.c
index 653e446170..ffaa200584 100644
--- a/elf/dl-conflict.c
+++ b/elf/dl-conflict.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 wi