summaryrefslogtreecommitdiff
path: root/socket
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 /socket
parentaf850b1c978bdca648ef9fb141e785d75f74d9bf (diff)
Replace FSF snail mail address with URLs.
Diffstat (limited to 'socket')
-rw-r--r--socket/Makefile5
-rw-r--r--socket/accept.c5
-rw-r--r--socket/accept4.c5
-rw-r--r--socket/bind.c5
-rw-r--r--socket/bits/socket2.h5
-rw-r--r--socket/connect.c5
-rw-r--r--socket/getpeername.c5
-rw-r--r--socket/getsockname.c5
-rw-r--r--socket/getsockopt.c5
-rw-r--r--socket/have_sock_cloexec.c5
-rw-r--r--socket/isfdtype.c5
-rw-r--r--socket/listen.c5
-rw-r--r--socket/opensock.c5
-rw-r--r--socket/recv.c5
-rw-r--r--socket/recvfrom.c5
-rw-r--r--socket/recvmsg.c5
-rw-r--r--socket/send.c5
-rw-r--r--socket/sendmsg.c5
-rw-r--r--socket/sendto.c5
-rw-r--r--socket/setsockopt.c5
-rw-r--r--socket/shutdown.c5
-rw-r--r--socket/sockatmark.c5
-rw-r--r--socket/socket.c5
-rw-r--r--socket/socketpair.c5
-rw-r--r--socket/sys/socket.h5
-rw-r--r--socket/sys/un.h5
26 files changed, 52 insertions, 78 deletions
diff --git a/socket/Makefile b/socket/Makefile
index 0e242b579c..b5be39a672 100644
--- a/socket/Makefile
+++ b/socket/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 socket portion of the library.
diff --git a/socket/accept.c b/socket/accept.c
index dad34ceddd..b9df1ac74e 100644
--- a/socket/accept.c
+++ b/socket/accept.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/accept4.c b/socket/accept4.c
index 40709d5704..7c7e2dd9a4 100644
--- a/socket/accept4.c
+++ b/socket/accept4.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/bind.c b/socket/bind.c
index 382e29db16..e87351d556 100644
--- a/socket/bind.c
+++ b/socket/bind.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/bits/socket2.h b/socket/bits/socket2.h
index 5c4cb47a6d..d12f06adf6 100644
--- a/socket/bits/socket2.h
+++ b/socket/bits/socket2.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 _SYS_SOCKET_H
# error "Never include <bits/socket2.h> directly; use <sys/socket.h> instead."
diff --git a/socket/connect.c b/socket/connect.c
index 55093313c9..063a8c94a3 100644
--- a/socket/connect.c
+++ b/socket/connect.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/getpeername.c b/socket/getpeername.c
index 6507387bd1..9562814e75 100644
--- a/socket/getpeername.c
+++ b/socket/getpeername.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/getsockname.c b/socket/getsockname.c
index b698bdbb7a..03d97652e9 100644
--- a/socket/getsockname.c
+++ b/socket/getsockname.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/getsockopt.c b/socket/getsockopt.c
index 8f4fa89578..661bcf3ffd 100644
--- a/socket/getsockopt.c
+++ b/socket/getsockopt.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/have_sock_cloexec.c b/socket/have_sock_cloexec.c
index 22dccdf722..d57cbcfaad 100644
--- a/socket/have_sock_cloexec.c
+++ b/socket/have_sock_cloexec.c
@@ -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/>. */
#include <sys/socket.h>
#include <kernel-features.h>
diff --git a/socket/isfdtype.c b/socket/isfdtype.c
index ba10912c9f..188d516d7f 100644
--- a/socket/isfdtype.c
+++ b/socket/isfdtype.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 <sys/stat.h>
diff --git a/socket/listen.c b/socket/listen.c
index cbdd8b9d18..0c1af82316 100644
--- a/socket/listen.c
+++ b/socket/listen.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/opensock.c b/socket/opensock.c
index 4a4d5dd385..eae8489133 100644
--- a/socket/opensock.c
+++ b/socket/opensock.c
@@ -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/>. */
#include <stdio.h>
#include <sys/socket.h>
diff --git a/socket/recv.c b/socket/recv.c
index 62af8fedf2..43fdcfcdee 100644
--- a/socket/recv.c
+++ b/socket/recv.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/recvfrom.c b/socket/recvfrom.c
index 4f6a045077..654d2e93ac 100644
--- a/socket/recvfrom.c
+++ b/socket/recvfrom.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/recvmsg.c b/socket/recvmsg.c
index 419415cd75..7cd6ff3dda 100644
--- a/socket/recvmsg.c
+++ b/socket/recvmsg.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/send.c b/socket/send.c
index 14ef9df2a2..2b87baea07 100644
--- a/socket/send.c
+++ b/socket/send.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/sendmsg.c b/socket/sendmsg.c
index a4a3cea950..249bb5af34 100644
--- a/socket/sendmsg.c
+++ b/socket/sendmsg.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/sendto.c b/socket/sendto.c
index 55adfe7df1..040caf8fa8 100644
--- a/socket/sendto.c
+++ b/socket/sendto.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/setsockopt.c b/socket/setsockopt.c
index aca73623fe..21824f625d 100644
--- a/socket/setsockopt.c
+++ b/socket/setsockopt.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/shutdown.c b/socket/shutdown.c
index 6fb25a4bc1..8ce992c472 100644
--- a/socket/shutdown.c
+++ b/socket/shutdown.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/sockatmark.c b/socket/sockatmark.c
index 402ef9b4d0..dd11b42a05 100644
--- a/socket/sockatmark.c
+++ b/socket/sockatmark.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/socket.c b/socket/socket.c
index 94e70bc4ea..273924a05c 100644
--- a/socket/socket.c
+++ b/socket/socket.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/socketpair.c b/socket/socketpair.c
index ad277c00e5..7933d44d6c 100644
--- a/socket/socketpair.c
+++ b/socket/socketpair.c
@@ -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/>. */
#include <errno.h>
#include <sys/socket.h>
diff --git a/socket/sys/socket.h b/socket/sys/socket.h
index 6fb51d7fc8..556ae905f6 100644
--- a/socket/sys/socket.h
+++ b/socket/sys/socket.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 _SYS_SOCKET_H
#define _SYS_SOCKET_H 1
diff --git a/socket/sys/un.h b/socket/sys/un.h
index 1fa10e4fe6..e49d552bda 100644
--- a/socket/sys/un.h
+++ b/socket/sys/un.h
@@ -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/>. */
#ifndef _SYS_UN_H
#define _SYS_UN_H 1