summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-21 17:44:12 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-21 17:44:12 -0600
commit2cd4aa56287b47f0a5c15d2630ae25c0c6d13c2e (patch)
treef72d1dbc8cfc8c36f42fbde49889c90e6ce9aca6 /apps
parent5b6a95d7ee9637c03970a15abcadc06738a48a9e (diff)
downloadnuttx-2cd4aa56287b47f0a5c15d2630ae25c0c6d13c2e.tar.gz
nuttx-2cd4aa56287b47f0a5c15d2630ae25c0c6d13c2e.tar.bz2
nuttx-2cd4aa56287b47f0a5c15d2630ae25c0c6d13c2e.zip
Fix routing of muli-network UDP packets
Diffstat (limited to 'apps')
-rw-r--r--apps/examples/bridge/bridge_main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/examples/bridge/bridge_main.c b/apps/examples/bridge/bridge_main.c
index 78ee23a60..cd2563ad4 100644
--- a/apps/examples/bridge/bridge_main.c
+++ b/apps/examples/bridge/bridge_main.c
@@ -635,8 +635,7 @@ static int bridge_net2_worker(int argc, char *argv[])
/* Send the newly received packet out network 1 */
- printf("NET2: Sending %d bytes on network 1\n", nrecvd);
- printf("NET1: Sending %d bytes on network 1: %d.%d.%d.%d:%d\n",
+ printf("NET2: Sending %d bytes on network 1: %d.%d.%d.%d:%d\n",
nrecvd,
CONFIG_EXAMPLES_BRIDGE_NET1_IPHOST >> 24,
(CONFIG_EXAMPLES_BRIDGE_NET1_IPHOST >> 16) & 0xff,