From 5d912d4c2bc90044b3b388a85175c0569a9e8105 Mon Sep 17 00:00:00 2001 From: toddouska Date: Fri, 16 Nov 2012 10:54:36 -0800 Subject: [PATCH] shadow crl-monitor linux fix --- src/crl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/crl.c b/src/crl.c index 2dc2f0eb4..599ec8057 100644 --- a/src/crl.c +++ b/src/crl.c @@ -437,8 +437,8 @@ static void* DoMonitor(void* arg) } for (;;) { - char buffer[8192]; - int length = read(notifyFd, buffer, sizeof(buffer)); + char buff[8192]; + int length = read(notifyFd, buff, sizeof(buff)); CYASSL_MSG("Got notify event");