diff options
author | Ron Yorston <rmy@pobox.com> | 2019-05-27 11:56:52 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2019-05-27 11:56:52 +0100 |
commit | a61949401890cbb33a9d6c4571b51c53460ad438 (patch) | |
tree | 64dedaddb89896d5b1670a421af123670ca2120b /networking/tc.c | |
parent | 03a7b173605a890e1db5177ecd5b8dd591081c41 (diff) | |
parent | bcb1fc3e6ca6fe902610f507eaf9b0b58a5c583a (diff) | |
download | busybox-w32-a61949401890cbb33a9d6c4571b51c53460ad438.tar.gz busybox-w32-a61949401890cbb33a9d6c4571b51c53460ad438.tar.bz2 busybox-w32-a61949401890cbb33a9d6c4571b51c53460ad438.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'networking/tc.c')
-rw-r--r-- | networking/tc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/networking/tc.c b/networking/tc.c index 3e9808328..2e1078d31 100644 --- a/networking/tc.c +++ b/networking/tc.c | |||
@@ -124,7 +124,8 @@ static char* print_tc_classid(uint32_t cid) | |||
124 | } | 124 | } |
125 | 125 | ||
126 | /* Get a qdisc handle. Return 0 on success, !0 otherwise. */ | 126 | /* Get a qdisc handle. Return 0 on success, !0 otherwise. */ |
127 | static int get_qdisc_handle(uint32_t *h, const char *str) { | 127 | static int get_qdisc_handle(uint32_t *h, const char *str) |
128 | { | ||
128 | uint32_t maj; | 129 | uint32_t maj; |
129 | char *p; | 130 | char *p; |
130 | 131 | ||
@@ -143,7 +144,8 @@ static int get_qdisc_handle(uint32_t *h, const char *str) { | |||
143 | } | 144 | } |
144 | 145 | ||
145 | /* Get class ID. Return 0 on success, !0 otherwise. */ | 146 | /* Get class ID. Return 0 on success, !0 otherwise. */ |
146 | static int get_tc_classid(uint32_t *h, const char *str) { | 147 | static int get_tc_classid(uint32_t *h, const char *str) |
148 | { | ||
147 | uint32_t maj, min; | 149 | uint32_t maj, min; |
148 | char *p; | 150 | char *p; |
149 | 151 | ||