From 534e7b53eaeb2b2954dfde9f9faa5905e3b4eeea Mon Sep 17 00:00:00 2001 From: Martin Koegler Date: Sun, 29 Jun 2008 15:26:54 +0200 Subject: [PATCH] Use correct variable name Signed-off-by: Martin Koegler --- eibd/client/php/io.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eibd/client/php/io.inc b/eibd/client/php/io.inc index 9ac3b8c..e044216 100644 --- a/eibd/client/php/io.inc +++ b/eibd/client/php/io.inc @@ -46,7 +46,7 @@ $this->errno = self::ECONNRESET; return -1; } - if (strlen($data) > 0xffff || strlen(data) < 2) + if (strlen($data) > 0xffff || strlen($data) < 2) { $this->errno = self::EINVAL; return -1; -- 2.11.4.GIT