From: Stephen Hemminger Date: Thu, 12 Sep 2024 17:12:21 +0000 (-0700) Subject: replace use of term 'Sanity check' X-Git-Tag: v6.11.0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=058e82cb2f4896903358f03e4b895670906a91df;p=thirdparty%2Fiproute2.git replace use of term 'Sanity check' The term "sanity check" is on the Tier2 word list (should replace). See https://inclusivenaming.org/word-lists/tier-2/sanity-check/ Signed-off-by: Stephen Hemminger --- diff --git a/misc/arpd.c b/misc/arpd.c index 3185620f7..e77ef5392 100644 --- a/misc/arpd.c +++ b/misc/arpd.c @@ -494,8 +494,7 @@ static void get_arp_pkt(void) if (ifnum && !handle_if(sll.sll_ifindex)) return; - /* Sanity checks */ - + /* Validate packet */ if (n < sizeof(*a) || (a->ar_op != htons(ARPOP_REQUEST) && a->ar_op != htons(ARPOP_REPLY)) || diff --git a/tipc/node.c b/tipc/node.c index e645d374c..b84a3fa1c 100644 --- a/tipc/node.c +++ b/tipc/node.c @@ -252,7 +252,7 @@ get_ops: /* Get master key indication */ opt_master = get_opt(opts, "master"); - /* Sanity check if wrong option */ + /* Validate node key */ if (opt_nodeid && opt_master) { fprintf(stderr, "error, per-node key cannot be master\n"); return -EINVAL;