Commit 952f89de authored by Phil Sutter's avatar Phil Sutter Committed by Stephen Hemminger

tc/p_ip.c: Minor coding style cleanup

Break overlong function definitions and remove one extraneous
whitespace.
Signed-off-by: default avatarPhil Sutter <phil@nwl.cc>
Signed-off-by: default avatarStephen Hemminger <stephen@networkplumber.org>
parent 95c9d0d3
...@@ -24,7 +24,8 @@ ...@@ -24,7 +24,8 @@
#include "m_pedit.h" #include "m_pedit.h"
static int static int
parse_ip(int *argc_p, char ***argv_p, struct tc_pedit_sel *sel, struct tc_pedit_key *tkey) parse_ip(int *argc_p, char ***argv_p,
struct tc_pedit_sel *sel, struct tc_pedit_key *tkey)
{ {
int res = -1; int res = -1;
int argc = *argc_p; int argc = *argc_p;
...@@ -52,7 +53,7 @@ parse_ip(int *argc_p, char ***argv_p, struct tc_pedit_sel *sel, struct tc_pedit_ ...@@ -52,7 +53,7 @@ parse_ip(int *argc_p, char ***argv_p, struct tc_pedit_sel *sel, struct tc_pedit_
if (strcmp(*argv, "tos") == 0 || matches(*argv, "dsfield") == 0) { if (strcmp(*argv, "tos") == 0 || matches(*argv, "dsfield") == 0) {
NEXT_ARG(); NEXT_ARG();
tkey->off = 1; tkey->off = 1;
res = parse_cmd(&argc, &argv, 1, TU32, RU8, sel, tkey); res = parse_cmd(&argc, &argv, 1, TU32, RU8, sel, tkey);
goto done; goto done;
} }
if (strcmp(*argv, "ihl") == 0) { if (strcmp(*argv, "ihl") == 0) {
...@@ -139,7 +140,8 @@ done: ...@@ -139,7 +140,8 @@ done:
} }
static int static int
parse_ip6(int *argc_p, char ***argv_p, struct tc_pedit_sel *sel, struct tc_pedit_key *tkey) parse_ip6(int *argc_p, char ***argv_p,
struct tc_pedit_sel *sel, struct tc_pedit_key *tkey)
{ {
int res = -1; int res = -1;
return res; return res;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment