summaryrefslogtreecommitdiffstats
path: root/cpukit/telnetd
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-12-17 19:41:20 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-12-17 19:41:20 +0000
commit72b5f2e4e01f2f0bc8fbfec8c86fbcbe78f655d6 (patch)
tree53bf6bb1ceca2a41c58c5f5ee6e64c77a8de9b23 /cpukit/telnetd
parentadapted to new _write function prototype (diff)
downloadrtems-72b5f2e4e01f2f0bc8fbfec8c86fbcbe78f655d6.tar.bz2
2009-12-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* telnetd/telnetd.c: Honor configuration setting for telnet daemon stack size.
Diffstat (limited to 'cpukit/telnetd')
-rw-r--r--cpukit/telnetd/telnetd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/telnetd/telnetd.c b/cpukit/telnetd/telnetd.c
index a901ca9131..74b4b6d0fb 100644
--- a/cpukit/telnetd/telnetd.c
+++ b/cpukit/telnetd/telnetd.c
@@ -334,7 +334,7 @@ rtems_status_code rtems_telnetd_initialize( void)
telnetd_task_id = telnetd_spawn_task(
"TNTD",
rtems_telnetd_config.priority,
- RTEMS_MINIMUM_STACK_SIZE,
+ rtems_telnetd_config.stack_size,
rtems_task_telnetd,
0
);