From 5fb59b30068567ac8f254352d85c4a41600e96cb Mon Sep 17 00:00:00 2001 From: John Safranek Date: Thu, 21 Aug 2014 14:41:05 -0700 Subject: [PATCH] Rename function SendBuffer() as SendBuffered() to match wolfSSL. --- src/internal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/internal.c b/src/internal.c index a0ff26c..711bc91 100644 --- a/src/internal.c +++ b/src/internal.c @@ -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); }