diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2013-06-29 22:55:41 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2013-07-04 18:02:22 +0200 |
commit | c6964c305b425b98aaf0492806a28b578d799d83 (patch) | |
tree | 55c7c52df882855abef78e4bd22e3dca4c18809c /sysdep/linux/netlink.Y | |
parent | 6ac4f87a2d661c739e55a63577e7bccf696c7abd (diff) |
Makes krt.c much more readable.
Diffstat (limited to 'sysdep/linux/netlink.Y')
-rw-r--r-- | sysdep/linux/netlink.Y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdep/linux/netlink.Y b/sysdep/linux/netlink.Y index 51689ff9..b0e35151 100644 --- a/sysdep/linux/netlink.Y +++ b/sysdep/linux/netlink.Y @@ -10,13 +10,13 @@ CF_HDR CF_DECLS -CF_KEYWORDS(ASYNC, KERNEL, TABLE, KRT_PREFSRC, KRT_REALM) +CF_KEYWORDS(KERNEL, TABLE, KRT_PREFSRC, KRT_REALM) CF_GRAMMAR -CF_ADDTO(kern_proto, kern_proto nl_item ';') +CF_ADDTO(kern_proto, kern_proto kern_sys_item ';') -nl_item: +kern_sys_item: KERNEL TABLE expr { if ($3 <= 0 || $3 >= NL_NUM_TABLES) cf_error("Kernel routing table number out of range"); |