From: German Service Network Date: Thu, 23 Apr 2026 16:58:02 +0000 (+0200) Subject: Fixes the indentation of the blocks X-Git-Url: https://git.gsnw.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=780ec46747803f89ef02b841785a7518110b75b8;p=fping.git Fixes the indentation of the blocks --- 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);