diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-01-23 01:27:17 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-01-23 01:27:17 +0000 |
commit | 7865e618ed1c8e27334c39cfd77f6d8e8aa8893f (patch) | |
tree | c701e3d39f6d9347a285a226ca27307ef1a2ec0f | |
parent | b3464802c8cfa8fa015c03822a5d21dc10edb75f (diff) | |
download | busybox-w32-7865e618ed1c8e27334c39cfd77f6d8e8aa8893f.tar.gz busybox-w32-7865e618ed1c8e27334c39cfd77f6d8e8aa8893f.tar.bz2 busybox-w32-7865e618ed1c8e27334c39cfd77f6d8e8aa8893f.zip |
- rtnl_rttable_a2n wants an unsigned int32
git-svn-id: svn://busybox.net/trunk/busybox@17484 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | networking/libiproute/iprule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/libiproute/iprule.c b/networking/libiproute/iprule.c index 2f3dc9841..abc0e7a85 100644 --- a/networking/libiproute/iprule.c +++ b/networking/libiproute/iprule.c | |||
@@ -256,7 +256,7 @@ static int iprule_modify(int cmd, int argc, char **argv) | |||
256 | addattr32(&req.n, sizeof(req), RTA_FLOW, realm); | 256 | addattr32(&req.n, sizeof(req), RTA_FLOW, realm); |
257 | } else if (matches(*argv, "table") == 0 || | 257 | } else if (matches(*argv, "table") == 0 || |
258 | strcmp(*argv, "lookup") == 0) { | 258 | strcmp(*argv, "lookup") == 0) { |
259 | int tid; | 259 | unsigned int tid; |
260 | NEXT_ARG(); | 260 | NEXT_ARG(); |
261 | if (rtnl_rttable_a2n(&tid, *argv)) | 261 | if (rtnl_rttable_a2n(&tid, *argv)) |
262 | invarg("table ID", *argv); | 262 | invarg("table ID", *argv); |