From 113ed15b7ecae4a3523454344f9b3438ea97fdc7 Mon Sep 17 00:00:00 2001 From: Francois-Xavier Le Bail Date: Fri, 21 Apr 2023 14:44:55 +0200 Subject: Put "}" at beginning of line with "else" to keep a consistent style [skip ci] --- print-ldp.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'print-ldp.c') diff --git a/print-ldp.c b/print-ldp.c index a62d22ba..0e0194a9 100644 --- a/print-ldp.c +++ b/print-ldp.c @@ -364,8 +364,7 @@ ldp_tlv_print(netdissect_options *ndo, ND_PRINT(": IPv4 prefix (invalid length)"); else ND_PRINT(": IPv4 prefix %s", buf); - } - else if (af == AFNUM_IP6) { + } else if (af == AFNUM_IP6) { i=decode_prefix6(ndo, tptr, tlv_tlen, buf, sizeof(buf)); if (i == -2) goto trunc; @@ -375,8 +374,7 @@ ldp_tlv_print(netdissect_options *ndo, ND_PRINT(": IPv6 prefix (invalid length)"); else ND_PRINT(": IPv6 prefix %s", buf); - } - else + } else ND_PRINT(": Address family %u prefix", af); break; case LDP_FEC_HOSTADDRESS: -- cgit v1.2.1