diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-01-09 12:15:30 +0100 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-01-09 12:15:30 +0100 |
commit | a27bad5370ebf2370efc6012f94a80d1e3bcb665 (patch) | |
tree | e197fe5accec94341f0c1295e5c56ddc94a7c099 /print-nflog.c | |
parent | 3bc62cd35f4c52f590605c73d92c92b6b4a4bdc5 (diff) | |
download | tcpdump-a27bad5370ebf2370efc6012f94a80d1e3bcb665.tar.gz |
Fix indentation
Diffstat (limited to 'print-nflog.c')
-rw-r--r-- | print-nflog.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/print-nflog.c b/print-nflog.c index c7cc47c1..017112e2 100644 --- a/print-nflog.c +++ b/print-nflog.c @@ -53,14 +53,14 @@ nflog_hdr_print(netdissect_options *ndo, const nflog_hdr_t *hdr, u_int length) if (!ndo->ndo_qflag) { ND_PRINT(", family %s (%d)", - tok2str(nflog_values, "Unknown", - hdr->nflog_family), - hdr->nflog_family); + tok2str(nflog_values, "Unknown", + hdr->nflog_family), + hdr->nflog_family); } else { ND_PRINT(", %s", - tok2str(nflog_values, - "Unknown NFLOG (0x%02x)", - hdr->nflog_family)); + tok2str(nflog_values, + "Unknown NFLOG (0x%02x)", + hdr->nflog_family)); } ND_PRINT(", length %u: ", length); |