summaryrefslogtreecommitdiff
path: root/nuttx/net/Makefile
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-01-14 09:43:59 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-01-14 09:43:59 -0600
commit37a1adc0053c37b3bc70379f489f93359724186a (patch)
tree704748a5735f9f304ca278c8236840d41712cffd /nuttx/net/Makefile
parent98a3d56a2faac2bb5301d8c47f11749614ba3e77 (diff)
downloadnuttx-37a1adc0053c37b3bc70379f489f93359724186a.tar.gz
nuttx-37a1adc0053c37b3bc70379f489f93359724186a.tar.bz2
nuttx-37a1adc0053c37b3bc70379f489f93359724186a.zip
Changes to correct TCP write buffereing build errors
Diffstat (limited to 'nuttx/net/Makefile')
-rw-r--r--nuttx/net/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/net/Makefile b/nuttx/net/Makefile
index 8549e5c57..fe2d35624 100644
--- a/nuttx/net/Makefile
+++ b/nuttx/net/Makefile
@@ -49,7 +49,7 @@ SOCK_CSRCS += net_clone.c net_vfcntl.c
ifeq ($(CONFIG_NET_TCP),y)
SOCK_CSRCS += send.c listen.c accept.c net_monitor.c
-ifeq ($(CONFIG_NET_TCP_WRBUFFER),y)
+ifeq ($(CONFIG_NET_TCP_WRITE_BUFFERS),y)
SOCK_CSRCS += net_send_buffered.c
else
SOCK_CSRCS += net_send_unbuffered.c