From 780ec46747803f89ef02b841785a7518110b75b8 Mon Sep 17 00:00:00 2001 From: German Service Network Date: Thu, 23 Apr 2026 18:58:02 +0200 Subject: [PATCH] Fixes the indentation of the blocks --- src/fping.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/fping.c b/src/fping.c index 83c806b..140ce49 100644 --- a/src/fping.c +++ b/src/fping.c @@ -600,19 +600,19 @@ int main(int argc, char **argv) } else if (strstr(optparse_state.optlongname, "seqmap-timeout") != NULL) { opt_seqmap_timeout = strtod_strict(optparse_state.optarg) * 1000000; } else if (strstr(optparse_state.optlongname, "oiface") != NULL) { - opt_oiface_on = 1; + opt_oiface_on = 1; #ifdef IP_PKTINFO - if (socket4 >= 0) { - socket_set_outgoing_iface_ipv4(socket4, optparse_state.optarg); - } + if (socket4 >= 0) { + socket_set_outgoing_iface_ipv4(socket4, optparse_state.optarg); + } #ifdef IPV6 - if (socket6 >= 0) { - socket_set_outgoing_iface_ipv6(optparse_state.optarg); - } + if (socket6 >= 0) { + socket_set_outgoing_iface_ipv6(optparse_state.optarg); + } #endif #else - fprintf(stderr, "%s: --oiface is not supported on this platform (IP_PKTINFO unavailable)\n", prog); - exit(3); + fprintf(stderr, "%s: --oiface is not supported on this platform (IP_PKTINFO unavailable)\n", prog); + exit(3); #endif } else { usage(1); -- 2.43.0