summaryrefslogtreecommitdiff
path: root/apps/examples/telnetd/shell.c
diff options
context:
space:
mode:
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;
}