diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2009-12-26 09:46:18 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2009-12-26 09:46:18 +0000 |
commit | ba80bdb2022edf77973ec70ff851643098bd86a9 (patch) | |
tree | e36121187540f994aac09326a8f579feac9c4764 /sys | |
parent | 991bdbbe17f0440b449c7a74b1f5781828223e1b (diff) |
SIGINTR -> SIGINT; taken from mrg@netbsd's fix to termios.4 (-r1.33);
ok guenther
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/termios.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/termios.h b/sys/sys/termios.h index 6a60d36637c..81508666d88 100644 --- a/sys/sys/termios.h +++ b/sys/sys/termios.h @@ -1,4 +1,4 @@ -/* $OpenBSD: termios.h,v 1.10 2005/12/13 00:35:23 millert Exp $ */ +/* $OpenBSD: termios.h,v 1.11 2009/12/26 09:46:17 jmc Exp $ */ /* $NetBSD: termios.h,v 1.14 1996/04/09 20:55:41 cgd Exp $ */ /* @@ -88,7 +88,7 @@ * Input flags - software input processing */ #define IGNBRK 0x00000001 /* ignore BREAK condition */ -#define BRKINT 0x00000002 /* map BREAK to SIGINTR */ +#define BRKINT 0x00000002 /* map BREAK to SIGINT */ #define IGNPAR 0x00000004 /* ignore (discard) parity errors */ #define PARMRK 0x00000008 /* mark parity and framing errors */ #define INPCK 0x00000010 /* enable checking of parity errors */ |