summary refs log tree commit diff
path: root/login
diff options
context:
space:
mode:
Diffstat (limited to 'login')
-rw-r--r--login/logwtmp.c2
-rw-r--r--login/pty.h36
2 files changed, 19 insertions, 19 deletions
diff --git a/login/logwtmp.c b/login/logwtmp.c
index 0d5e48e51f..876388323f 100644
--- a/login/logwtmp.c
+++ b/login/logwtmp.c
@@ -67,7 +67,7 @@ logwtmp (const char *line, const char *name, const char *host)
       __flock (fd, LOCK_EX | LOCK_NB);
     }
 
-  /* Remeber original size of log file: */
+  /* Remember original size of log file: */
   if (__fstat (fd, &st) < 0)
     goto done;
 
diff --git a/login/pty.h b/login/pty.h
index da78742cf7..09024a787a 100644
--- a/login/pty.h
+++ b/login/pty.h
@@ -1,21 +1,21 @@
-/* pty.h - Functions for pseudo TTY handlung.
-Copyright (C) 1996 Free Software Foundation, Inc.
-This file is part of the GNU C Library.
-
-The GNU C Library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Library General Public License as
-published by the Free Software Foundation; either version 2 of the
-License, or (at your option) any later version.
-
-The GNU C Library 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
-Library General Public License for more details.
-
-You should have received a copy of the GNU Library General Public
-License along with the GNU C Library; see the file COPYING.LIB.  If
-not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.  */
+/* pty.h - Functions for pseudo TTY handling.
+   Copyright (C) 1996 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Library General Public License as
+   published by the Free Software Foundation; either version 2 of the
+   License, or (at your option) any later version.
+
+   The GNU C Library 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
+   Library General Public License for more details.
+
+   You should have received a copy of the GNU Library General Public
+   License along with the GNU C Library; see the file COPYING.LIB.  If not,
+   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+   Boston, MA 02111-1307, USA.  */
 
 #ifndef _PTY_H