From 1443ca494f6666fa793428b42d430428ad9f462b Mon Sep 17 00:00:00 2001 From: Sean Middleditch Date: Sat, 21 Mar 2009 00:21:04 -0400 Subject: [PATCH] fix function name --- libtelnet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtelnet.c b/libtelnet.c index 1e9bcf8..df8a882 100644 --- a/libtelnet.c +++ b/libtelnet.c @@ -775,7 +775,7 @@ void telnet_send(telnet_t *telnet, const char *buffer, } /* send subnegotiation header */ -void telnet_begin_subnegotiation(telnet_t *telnet, unsigned char telopt) { +void telnet_begin_sb(telnet_t *telnet, unsigned char telopt) { const char sb[3] = { TELNET_IAC, TELNET_SB, telopt }; _send(telnet, sb, 3); }