summaryrefslogtreecommitdiff
path: root/apps/examples/telnetd/shell.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-30 20:13:50 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-30 20:13:50 +0000
commit79c7065433ae27932ad8b781d38b8f7832b01581 (patch)
treef770414832eeecb35adb70404b31d147afad7235 /apps/examples/telnetd/shell.c
parentf9d19788072090be80b71ab0d0de14507a6e739b (diff)
downloadnuttx-79c7065433ae27932ad8b781d38b8f7832b01581.tar.gz
nuttx-79c7065433ae27932ad8b781d38b8f7832b01581.tar.bz2
nuttx-79c7065433ae27932ad8b781d38b8f7832b01581.zip
Add configurable application entry point
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5070 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/examples/telnetd/shell.c')
-rw-r--r--apps/examples/telnetd/shell.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/examples/telnetd/shell.c b/apps/examples/telnetd/shell.c
index 01c620e1e..3033698c5 100644
--- a/apps/examples/telnetd/shell.c
+++ b/apps/examples/telnetd/shell.c
@@ -222,14 +222,14 @@ static void shell_netinit(void)
* Public Functions
****************************************************************************/
-int MAIN_NAME(int argc, char *argv[])
+int shell_main(int argc, char *argv[])
{
struct telnetd_config_s config;
int ret;
/* Configure the network */
- printf(MAIN_STRING "Initializing the network\n");
+ printf("shell_main: Initializing the network\n");
shell_netinit();
/* Configure the telnet daemon */
@@ -243,13 +243,13 @@ int MAIN_NAME(int argc, char *argv[])
/* Start the telnet daemon */
- printf(MAIN_STRING "Starting the Telnet daemon\n");
+ printf("shell_main: Starting the Telnet daemon\n");
ret = telnetd_start(&config);
if (ret < 0)
{
printf("Failed to tart the Telnet daemon\n");
}
- printf(MAIN_STRING "Exiting\n");
+ printf("shell_main: Exiting\n");
return 0;
}