PERFORCE change 147273 for review
Ed Schouten
ed at FreeBSD.org
Tue Aug 12 22:47:47 UTC 2008
http://perforce.freebsd.org/chv.cgi?CH=147273
Change 147273 by ed at ed_dull on 2008/08/12 22:47:19
s/OXTABS/TAB3/
Affected files ...
.. //depot/projects/mpsafetty/sys/compat/linux/linux_ioctl.c#4 edit
.. //depot/projects/mpsafetty/sys/i386/ibcs2/ibcs2_ioctl.c#2 edit
Differences ...
==== //depot/projects/mpsafetty/sys/compat/linux/linux_ioctl.c#4 (text+ko) ====
@@ -398,7 +398,7 @@
lios->c_oflag |= LINUX_OPOST;
if (bios->c_oflag & ONLCR)
lios->c_oflag |= LINUX_ONLCR;
- if (bios->c_oflag & OXTABS)
+ if (bios->c_oflag & TAB3)
lios->c_oflag |= LINUX_XTABS;
lios->c_cflag = bsd_to_linux_speed(bios->c_ispeed, sptab);
@@ -540,7 +540,7 @@
if (lios->c_oflag & LINUX_ONLCR)
bios->c_oflag |= ONLCR;
if (lios->c_oflag & LINUX_XTABS)
- bios->c_oflag |= OXTABS;
+ bios->c_oflag |= TAB3;
bios->c_cflag = (lios->c_cflag & LINUX_CSIZE) << 4;
if (lios->c_cflag & LINUX_CSTOPB)
==== //depot/projects/mpsafetty/sys/i386/ibcs2/ibcs2_ioctl.c#2 (text+ko) ====
@@ -169,7 +169,7 @@
l = st->c_oflag; r = 0;
if (l & IBCS2_OPOST) r |= OPOST;
if (l & IBCS2_ONLCR) r |= ONLCR;
- if (l & IBCS2_TAB3) r |= OXTABS;
+ if (l & IBCS2_TAB3) r |= TAB3;
bt->c_oflag = r;
l = st->c_cflag; r = 0;
@@ -263,7 +263,7 @@
l = bt->c_oflag; r = 0;
if (l & OPOST) r |= IBCS2_OPOST;
if (l & ONLCR) r |= IBCS2_ONLCR;
- if (l & OXTABS) r |= IBCS2_TAB3;
+ if (l & TAB3) r |= IBCS2_TAB3;
st->c_oflag = r;
l = bt->c_cflag; r = 0;
More information about the p4-projects
mailing list