summaryrefslogtreecommitdiff
path: root/src/server
diff options
context:
space:
mode:
Diffstat (limited to 'src/server')
-rw-r--r--src/server/telnet_server.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/server/telnet_server.c b/src/server/telnet_server.c
index 46c88367..10caee31 100644
--- a/src/server/telnet_server.c
+++ b/src/server/telnet_server.c
@@ -580,18 +580,6 @@ static int telnet_connection_closed(struct connection *connection)
return ERROR_OK;
}
-int telnet_set_prompt(struct connection *connection, char *prompt)
-{
- struct telnet_connection *t_con = connection->priv;
-
- if (t_con->prompt != NULL)
- free(t_con->prompt);
-
- t_con->prompt = strdup(prompt);
-
- return ERROR_OK;
-}
-
int telnet_init(char *banner)
{
struct telnet_service *telnet_service = malloc(sizeof(struct telnet_service));