]> git.ozlabs.org Git - ppp.git/commitdiff
Get rid of an unnecessary chmod (it wasn't being used on Linux anyway).
authorPaul Mackerras <paulus@samba.org>
Thu, 28 Oct 2004 00:16:37 +0000 (00:16 +0000)
committerPaul Mackerras <paulus@samba.org>
Thu, 28 Oct 2004 00:16:37 +0000 (00:16 +0000)
pppd/tty.c

index d39d4a4dea57367f53799901966ff8be44bcee21..4bac6484f4e063a49af6994090a9af6f74b25c68 100644 (file)
@@ -73,7 +73,7 @@
  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#define RCSID  "$Id: tty.c,v 1.15 2004/10/24 23:53:05 paulus Exp $"
+#define RCSID  "$Id: tty.c,v 1.16 2004/10/28 00:16:37 paulus Exp $"
 
 #include <stdio.h>
 #include <ctype.h>
@@ -810,10 +810,8 @@ finish_tty()
 
 #ifndef __linux__
        if (tty_mode != (mode_t) -1) {
-               if (fchmod(real_ttyfd, tty_mode) != 0) {
-                       /* XXX if devnam is a symlink, this will change the link */
-                       chmod(devnam, tty_mode);
-               }
+               if (fchmod(real_ttyfd, tty_mode) != 0)
+                       error("Couldn't restore tty permissions");
        }
 #endif /* __linux__ */