Rename function SendBuffer() as SendBuffered() to match wolfSSL.

pull/1/head
John Safranek 2014-08-21 14:41:05 -07:00
parent 106e349a23
commit 5fb59b3006
1 changed files with 2 additions and 2 deletions

View File

@ -346,7 +346,7 @@ static int GetInputText(WOLFSSH* ssh)
}
static int SendBuffer(WOLFSSH* ssh)
static int SendBuffered(WOLFSSH* ssh)
{
if (ssh->ctx->ioSendCb == NULL) {
WLOG(WS_LOG_DEBUG, "Your IO Send callback is null, please set");
@ -384,7 +384,7 @@ static int SendText(WOLFSSH* ssh, const char* text, uint32_t textLen)
WMEMCPY(ssh->outputBuffer.buffer, text, textLen);
ssh->outputBuffer.length = textLen;
return SendBuffer(ssh);
return SendBuffered(ssh);
}