svn commit: r199882 - head/sys/compat/svr4

Ed Schouten ed at FreeBSD.org
Sat Nov 28 16:30:06 UTC 2009


Author: ed
Date: Sat Nov 28 16:30:06 2009
New Revision: 199882
URL: http://svn.freebsd.org/changeset/base/199882

Log:
  Include <sys/tty.h> instead of <sys/termios.h>.
  
  Right now <sys/termios.h> includes <sys/ttycom.h>, which provides the
  TTY ioctls to the svr4 code. We need both struct termios and the ioctls,
  so include <sys/tty.h> for now.

Modified:
  head/sys/compat/svr4/svr4_termios.c

Modified: head/sys/compat/svr4/svr4_termios.c
==============================================================================
--- head/sys/compat/svr4/svr4_termios.c	Sat Nov 28 16:25:55 2009	(r199881)
+++ head/sys/compat/svr4/svr4_termios.c	Sat Nov 28 16:30:06 2009	(r199882)
@@ -34,7 +34,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/systm.h>
 #include <sys/file.h>
 #include <sys/filedesc.h>
-#include <sys/termios.h>
+#include <sys/tty.h>
 
 #include <sys/sysproto.h>
 


More information about the svn-src-all mailing list