diff options
author | 2017-05-27 12:00:28 +0000 | |
---|---|---|
committer | 2017-05-27 12:00:28 +0000 | |
commit | d3118a24d5c7f2b2e39268129c55c4c063a10bcc (patch) | |
tree | 100a5fcc4b97d04105011d85b899d408194c16c3 | |
parent | Do not use reject routes as they prevent path MTU discovery. (diff) | |
download | wireguard-openbsd-d3118a24d5c7f2b2e39268129c55c4c063a10bcc.tar.xz wireguard-openbsd-d3118a24d5c7f2b2e39268129c55c4c063a10bcc.zip |
Add missing comments for CAN and SUB, for consistency.
OK tb@
-rw-r--r-- | sys/dev/wscons/ascii.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/wscons/ascii.h b/sys/dev/wscons/ascii.h index 4088f5f6476..55fd11a1bfe 100644 --- a/sys/dev/wscons/ascii.h +++ b/sys/dev/wscons/ascii.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ascii.h,v 1.5 2009/01/12 20:43:53 miod Exp $ */ +/* $OpenBSD: ascii.h,v 1.6 2017/05/27 12:00:28 fcambus Exp $ */ /* $NetBSD: ascii.h,v 1.3 1998/06/20 19:11:04 drochner Exp $ */ #define ASCII_NUL 0x00 /* nul */ @@ -11,6 +11,6 @@ #define ASCII_CR 0x0d /* carriage return */ #define ASCII_SO 0x0e /* shift out */ #define ASCII_SI 0x0f /* shift in */ -#define ASCII_CAN 0x18 -#define ASCII_SUB 0x1a +#define ASCII_CAN 0x18 /* cancel */ +#define ASCII_SUB 0x1a /* substitute */ #define ASCII_ESC 0x1b /* escape */ |