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 | a3b66e1ea15475732fba6c73e23259c80a8bad63 (patch) | |
tree | be78eb8a0ac82ca6675f3bd90a5e15f7a93674b5 /target/linux | |
parent | 0e0067096215d2c6b2b2b417a1a194dbff81eeab (diff) | |
download | upstream-a3b66e1ea15475732fba6c73e23259c80a8bad63.tar.gz upstream-a3b66e1ea15475732fba6c73e23259c80a8bad63.tar.bz2 upstream-a3b66e1ea15475732fba6c73e23259c80a8bad63.zip |
linux/generic: update 2.6.36 kernel patches
SVN-Revision: 22844
Diffstat (limited to 'target/linux')
-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. |