fix function name

This commit is contained in:
Sean Middleditch 2009-03-21 00:21:04 -04:00
parent e2122b2653
commit 1443ca494f
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}