summaryrefslogtreecommitdiff
path: root/login
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 /login
parentaf850b1c978bdca648ef9fb141e785d75f74d9bf (diff)
Replace FSF snail mail address with URLs.
Diffstat (limited to 'login')
-rw-r--r--login/Makefile5
-rw-r--r--login/endutxent.c5
-rw-r--r--login/forkpty.c5
-rw-r--r--login/getpt.c5
-rw-r--r--login/getutent.c5
-rw-r--r--login/getutent_r.c5
-rw-r--r--login/getutid.c5
-rw-r--r--login/getutid_r.c5
-rw-r--r--login/getutline.c5
-rw-r--r--login/getutline_r.c5
-rw-r--r--login/getutmp.c5
-rw-r--r--login/getutmpx.c5
-rw-r--r--login/getutxent.c5
-rw-r--r--login/getutxid.c5
-rw-r--r--login/getutxline.c5
-rw-r--r--login/grantpt.c5
-rw-r--r--login/login.c5
-rw-r--r--login/logout.c5
-rw-r--r--login/logwtmp.c5
-rw-r--r--login/openpty.c5
-rw-r--r--login/programs/pt_chown.c5
-rw-r--r--login/programs/utmpdump.c5
-rw-r--r--login/ptsname.c5
-rw-r--r--login/pty.h5
-rw-r--r--login/pututxline.c5
-rw-r--r--login/setutxent.c5
-rw-r--r--login/tst-utmp.c5
-rw-r--r--login/unlockpt.c5
-rw-r--r--login/updwtmp.c5
-rw-r--r--login/updwtmpx.c5
-rw-r--r--login/utmp-private.h5
-rw-r--r--login/utmp.h5
-rw-r--r--login/utmp_file.c5
-rw-r--r--login/utmpname.c5
-rw-r--r--login/utmpxname.c5
35 files changed, 70 insertions, 105 deletions
diff --git a/login/Makefile b/login/Makefile
index 46bde13a83..305d334d8a 100644
--- a/login/Makefile
+++ b/login/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 login portion of the library.
diff --git a/login/endutxent.c b/login/endutxent.c
index 2a93081c83..9a6f6979c4 100644
--- a/login/endutxent.c
+++ b/login/endutxent.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 <utmp.h>
#include <utmpx.h>
diff --git a/login/forkpty.c b/login/forkpty.c
index 482aebcb28..e5e2873534 100644
--- a/login/forkpty.c
+++ b/login/forkpty.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 <sys/types.h>
#include <termios.h>
diff --git a/login/getpt.c b/login/getpt.c
index cd7107e5d6..34218a63ac 100644
--- a/login/getpt.c
+++ b/login/getpt.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 <stdlib.h>
#include <errno.h>
diff --git a/login/getutent.c b/login/getutent.c
index 561f17f4d9..35916fdea9 100644
--- a/login/getutent.c
+++ b/login/getutent.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 <stdlib.h>
#include <utmp.h>
diff --git a/login/getutent_r.c b/login/getutent_r.c
index 76cb4cfc88..dfe27f794b 100644
--- a/login/getutent_r.c
+++ b/login/getutent_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 <bits/libc-lock.h>
#include <stdlib.h>
diff --git a/login/getutid.c b/login/getutid.c
index 3d022e405d..2d4705ef18 100644
--- a/login/getutid.c
+++ b/login/getutid.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 <stdlib.h>
#include <utmp.h>
diff --git a/login/getutid_r.c b/login/getutid_r.c
index b91e843bc1..47e94cebe5 100644
--- a/login/getutid_r.c
+++ b/login/getutid_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 <bits/libc-lock.h>
#include <errno.h>
diff --git a/login/getutline.c b/login/getutline.c
index 7618064d00..44e97c4b20 100644
--- a/login/getutline.c
+++ b/login/getutline.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 <stdlib.h>
#include <utmp.h>
diff --git a/login/getutline_r.c b/login/getutline_r.c
index b7d13502b5..79ec203f80 100644
--- a/login/getutline_r.c
+++ b/login/getutline_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 <bits/libc-lock.h>
diff --git a/login/getutmp.c b/login/getutmp.c
index 275c1a8738..874b97fdc8 100644
--- a/login/getutmp.c
+++ b/login/getutmp.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 <string.h>
#include <utmp.h>
diff --git a/login/getutmpx.c b/login/getutmpx.c
index 5f53f22e6c..b0382a109d 100644
--- a/login/getutmpx.c
+++ b/login/getutmpx.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 <string.h>
#include <utmp.h>
diff --git a/login/getutxent.c b/login/getutxent.c
index 4961dee051..139110b593 100644
--- a/login/getutxent.c
+++ b/login/getutxent.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 <utmp.h>
#include <utmpx.h>
diff --git a/login/getutxid.c b/login/getutxid.c
index ba9d5b79d8..652ebabaf8 100644
--- a/login/getutxid.c
+++ b/login/getutxid.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 <utmp.h>
#include <utmpx.h>
diff --git a/login/getutxline.c b/login/getutxline.c
index 74149534c4..5d4da8b92d 100644
--- a/login/getutxline.c
+++ b/login/getutxline.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 <utmp.h>
#include <utmpx.h>
diff --git a/login/grantpt.c b/login/grantpt.c
index 65da95b308..a076112fcf 100644
--- a/login/grantpt.c
+++ b/login/grantpt.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 <stdlib.h>
#include <errno.h>
diff --git a/login/login.c b/login/login.c
index 6efa7627f4..cdc18a28ff 100644
--- a/login/login.c
+++ b/login/login.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/login/logout.c b/login/logout.c
index 8902036c5e..01869f01d1 100644
--- a/login/logout.c
+++ b/login/logout.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 <string.h>
diff --git a/login/logwtmp.c b/login/logwtmp.c
index ff2e7f9887..0bc6a724d6 100644
--- a/login/logwtmp.c
+++ b/login/logwtmp.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 <string.h>
#include <sys/time.h>
diff --git a/login/openpty.c b/login/openpty.c
index 0ff901c3f5..696311ab20 100644
--- a/login/openpty.c
+++ b/login/openpty.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 <fcntl.h>
diff --git a/login/programs/pt_chown.c b/login/programs/pt_chown.c
index da12d24645..fe98964c33 100644
--- a/login/programs/pt_chown.c
+++ b/login/programs/pt_chown.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 <argp.h>
#include <errno.h>
diff --git a/login/programs/utmpdump.c b/login/programs/utmpdump.c
index 8f6558ee25..6c2417d8fe 100644
--- a/login/programs/utmpdump.c
+++ b/login/programs/utmpdump.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 <stdio.h>
#include <stdlib.h>
diff --git a/login/ptsname.c b/login/ptsname.c
index c16e056a97..d22ec41362 100644
--- a/login/ptsname.c
+++ b/login/ptsname.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 <stdlib.h>
diff --git a/login/pty.h b/login/pty.h
index a2ed77d58d..b527cd4935 100644
--- a/login/pty.h
+++ b/login/pty.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 _PTY_H
#define _PTY_H 1
diff --git a/login/pututxline.c b/login/pututxline.c
index 1ed5178862..a8f5b1a1f1 100644
--- a/login/pututxline.c
+++ b/login/pututxline.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 <utmp.h>
#include <utmpx.h>
diff --git a/login/setutxent.c b/login/setutxent.c
index b6cd282644..540ec75a2b 100644
--- a/login/setutxent.c
+++ b/login/setutxent.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 <utmp.h>
#include <utmpx.h>
diff --git a/login/tst-utmp.c b/login/tst-utmp.c
index 12a2088558..cce79b4980 100644
--- a/login/tst-utmp.c
+++ b/login/tst-utmp.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 <error.h>
diff --git a/login/unlockpt.c b/login/unlockpt.c
index c5c4890f59..1f3bf14ce2 100644
--- a/login/unlockpt.c
+++ b/login/unlockpt.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 <stdlib.h>
#include <errno.h>
diff --git a/login/updwtmp.c b/login/updwtmp.c
index 415e1dbd42..f0047c5e3e 100644
--- a/login/updwtmp.c
+++ b/login/updwtmp.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 <utmp.h>
diff --git a/login/updwtmpx.c b/login/updwtmpx.c
index 13a7045286..875b679258 100644
--- a/login/updwtmpx.c
+++ b/login/updwtmpx.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 <utmp.h>
#include <utmpx.h>
diff --git a/login/utmp-private.h b/login/utmp-private.h
index 83b344150c..21e978ffb6 100644
--- a/login/utmp-private.h
+++ b/login/utmp-private.h
@@ -15,9 +15,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 _UTMP_PRIVATE_H
#define _UTMP_PRIVATE_H 1
diff --git a/login/utmp.h b/login/utmp.h
index f710b4ecd0..bacfe7d803 100644
--- a/login/utmp.h
+++ b/login/utmp.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 _UTMP_H
#define _UTMP_H 1
diff --git a/login/utmp_file.c b/login/utmp_file.c
index d19a2c9c4d..c1fd108d46 100644
--- a/login/utmp_file.c
+++ b/login/utmp_file.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/login/utmpname.c b/login/utmpname.c
index 24ed7f3c46..f6f49a159d 100644
--- a/login/utmpname.c
+++ b/login/utmpname.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 <bits/libc-lock.h>
#include <stdlib.h>
diff --git a/login/utmpxname.c b/login/utmpxname.c
index 06ff80b982..128084ebfc 100644
--- a/login/utmpxname.c
+++ b/login/utmpxname.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 <utmp.h>
#include <utmpx.h>