summaryrefslogtreecommitdiff
path: root/apps/examples/sendmail/host.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-06-29 13:11:08 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-06-29 13:11:08 -0600
commitdb01dd7d4bb05dcb6a12131beeb18e9dff8c09ce (patch)
treebb51333d9bffe0423fb6b2e14136e611d3ebd31f /apps/examples/sendmail/host.c
parent47835f30174bd60663fc86eecf1c83a23ba59cac (diff)
downloadnuttx-db01dd7d4bb05dcb6a12131beeb18e9dff8c09ce.tar.gz
nuttx-db01dd7d4bb05dcb6a12131beeb18e9dff8c09ce.tar.bz2
nuttx-db01dd7d4bb05dcb6a12131beeb18e9dff8c09ce.zip
NET: Rename uip_ipaddr* to net_ipaddr*
Diffstat (limited to 'apps/examples/sendmail/host.c')
-rw-r--r--apps/examples/sendmail/host.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/examples/sendmail/host.c b/apps/examples/sendmail/host.c
index a175d2e9a..d603372ad 100644
--- a/apps/examples/sendmail/host.c
+++ b/apps/examples/sendmail/host.c
@@ -90,7 +90,7 @@ int main(int argc, char **argv, char **envp)
printf("sendmail: Subject: %s\n", g_subject);
printf("sendmail: Body: %s\n", g_msg_body);
- uip_ipaddr(addr.s_addr, 127, 0, 0, 1);
+ net_ipaddr(addr.s_addr, 127, 0, 0, 1);
handle = smtp_open();
if (handle)
{