diff options
author | Luka Perkov <luka@openwrt.org> | 2013-05-14 23:49:31 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2013-05-14 23:49:31 +0000 |
commit | 5be36cbe834dd22a0f2692b9b984ba13307543fa (patch) | |
tree | 853af1ad461eaecde0c9c2d0ae015de7b6ba63de /package/network/utils/iproute2/patches | |
parent | d090eea12588607a7fefaa9cf552e06230276c91 (diff) | |
download | upstream-5be36cbe834dd22a0f2692b9b984ba13307543fa.tar.gz upstream-5be36cbe834dd22a0f2692b9b984ba13307543fa.tar.bz2 upstream-5be36cbe834dd22a0f2692b9b984ba13307543fa.zip |
iproute2: print help in connmark
SVN-Revision: 36637
Diffstat (limited to 'package/network/utils/iproute2/patches')
-rw-r--r-- | package/network/utils/iproute2/patches/200-act_connmark.patch | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/network/utils/iproute2/patches/200-act_connmark.patch b/package/network/utils/iproute2/patches/200-act_connmark.patch index 4a48ac3f01..ac6ba33792 100644 --- a/package/network/utils/iproute2/patches/200-act_connmark.patch +++ b/package/network/utils/iproute2/patches/200-act_connmark.patch @@ -10,7 +10,7 @@ TCMODULES += p_icmp.o --- /dev/null +++ b/tc/m_connmark.c -@@ -0,0 +1,71 @@ +@@ -0,0 +1,74 @@ +/* + * m_connmark.c Connection tracking marking import + * @@ -62,6 +62,9 @@ + + NEXT_ARG(); + ++ if (matches(*argv, "help") == 0) ++ usage(); ++ + *argc_p = argc; + *argv_p = argv; + return 0; |