diff options
author | acoul <acoul@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-08-30 08:58:50 +0000 |
---|---|---|
committer | acoul <acoul@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-08-30 08:58:50 +0000 |
commit | 2e6f3ef5525cf6abd398b0606aed83e5d3b7bf4f (patch) | |
tree | d6f912eebb73e340cf77dbf892cbb835f106d28e /target | |
parent | cf5ce25305130b82dba3883b0b35a28565bddd1b (diff) |
linux/generic: update 2.6.36 kernel patches
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22844 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/generic/patches-2.6.36/190-netfilter_rtsp.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/generic/patches-2.6.36/190-netfilter_rtsp.patch b/target/linux/generic/patches-2.6.36/190-netfilter_rtsp.patch index 68792936b..e7fcefeb3 100644 --- a/target/linux/generic/patches-2.6.36/190-netfilter_rtsp.patch +++ b/target/linux/generic/patches-2.6.36/190-netfilter_rtsp.patch @@ -1016,8 +1016,8 @@ + t = &exp->tuple; + t->dst.u3.ip = newip; + -+ extaddrlen = extip ? sprintf(szextaddr, "%u.%u.%u.%u", NIPQUAD(extip)) -+ : sprintf(szextaddr, "%u.%u.%u.%u", NIPQUAD(newip)); ++ extaddrlen = extip ? sprintf(szextaddr, "%u.%u.%u.%u", &extip) ++ : sprintf(szextaddr, "%u.%u.%u.%u", &newip); + DEBUGP("stunaddr=%s (%s)\n", szextaddr, (extip?"forced":"auto")); + + rbuf1len = rbufalen = 0; @@ -1319,7 +1319,7 @@ + newip = newdstip; + + DEBUGP("newsrcip=%u.%u.%u.%u, newdstip=%u.%u.%u.%u, newip=%u.%u.%u.%u\n", -+ NIPQUAD(newsrcip), NIPQUAD(newdstip), NIPQUAD(newip)); ++ &newsrcip, &newdstip, &newip); + + mr.rangesize = 1; + // We don't want to manip the per-protocol, just the IPs. |