Indent code to fix 'make syntax-check'.

This commit is contained in:
Simon Josefsson
2023-01-09 10:59:12 +01:00
parent c2cfa7889c
commit eb5e59b621

View File

@@ -57,12 +57,12 @@
/* RFC 4443 addition not yet available in libc headers */
#ifndef ICMP6_DST_UNREACH_POLICYFAIL
#define ICMP6_DST_UNREACH_POLICYFAIL 5
# define ICMP6_DST_UNREACH_POLICYFAIL 5
#endif
/* RFC 4443 addition not yet available in libc headers */
#ifndef ICMP6_DST_UNREACH_REJECTROUTE
#define ICMP6_DST_UNREACH_REJECTROUTE 6
# define ICMP6_DST_UNREACH_REJECTROUTE 6
#endif
static PING *ping;
@@ -647,7 +647,8 @@ static struct icmp_code_descr icmp_dest_unreach_desc[] = {
{ICMP6_DST_UNREACH_BEYONDSCOPE, "Beyond scope of source address"},
{ICMP6_DST_UNREACH_ADDR, "Address unreachable"},
{ICMP6_DST_UNREACH_NOPORT, "Port unreachable"},
{ICMP6_DST_UNREACH_POLICYFAIL, "Source address failed ingress/egress policy"},
{ICMP6_DST_UNREACH_POLICYFAIL,
"Source address failed ingress/egress policy"},
{ICMP6_DST_UNREACH_REJECTROUTE, "Reject route to destination"},
};