diff options
author | Alexandros C. Couloumbis <alex@ozo.com> | 2010-08-30 08:58:50 +0000 |
---|---|---|
committer | Alexandros C. Couloumbis <alex@ozo.com> | 2010-08-30 08:58:50 +0000 |
commit | 11848b763aef8df11e145463a895136aa4526793 (patch) | |
tree | d6f912eebb73e340cf77dbf892cbb835f106d28e /target | |
parent | cdb73c4f2b19c8d037e8e4e3075027dd765e9d25 (diff) | |
download | upstream-11848b763aef8df11e145463a895136aa4526793.tar.gz upstream-11848b763aef8df11e145463a895136aa4526793.tar.bz2 upstream-11848b763aef8df11e145463a895136aa4526793.zip |
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 68792936bb..e7fcefeb37 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. |