From 969cb79f5b7e7547d24895c40d6735fe07cbcf35 Mon Sep 17 00:00:00 2001 From: Gleb Smirnoff Date: Thu, 20 Jun 2024 16:10:39 -0700 Subject: [PATCH] netlink/route: reformat comment to fit 80 chars No functional or content changes. --- sys/netlink/route/route.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sys/netlink/route/route.h b/sys/netlink/route/route.h index 1d4149e23d2f..60c3a22718a3 100644 --- a/sys/netlink/route/route.h +++ b/sys/netlink/route/route.h @@ -134,9 +134,10 @@ enum rt_scope_t { /* * Routing table identifiers. - * FreeBSD route table numbering starts from 0, where 0 is a valid default routing table. - * Indicating "all tables" via netlink can be done by not including RTA_TABLE attribute - * and keeping rtm_table=0 (compatibility) or setting RTA_TABLE value to RT_TABLE_UNSPEC. + * FreeBSD route table numbering starts from 0, where 0 is a valid default + * routing table. Indicating "all tables" via netlink can be done by not + * including RTA_TABLE attribute and keeping rtm_table=0 (compatibility) or + * setting RTA_TABLE value to RT_TABLE_UNSPEC. */ #define RT_TABLE_MAIN 0 /* RT_DEFAULT_FIB */ #define RT_TABLE_UNSPEC 0xFFFFFFFF /* RT_ALL_FIBS */