From cbd48c497fd2a949166e8fc40c2f928592d6f806 Mon Sep 17 00:00:00 2001 From: Paul Capron Date: Fri, 25 Sep 2020 11:04:00 +0200 Subject: =?UTF-8?q?priv.h:=20Fix=20=E2=80=9CMAX=5FPACKAT=5FLEN=E2=80=9D=20?= =?UTF-8?q?typo=20in=20#ifndef=20guard?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The preprocessor guard was previously effectively inoperative; it used to read “MAX_PACKAT_LEN” (note the ‘A’!), now is ‘E’. Signed-off-by: Paul Capron Reviewed-by: Jakub Jelen --- include/libssh/priv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/libssh/priv.h b/include/libssh/priv.h index 3cf2004e..ada4d152 100644 --- a/include/libssh/priv.h +++ b/include/libssh/priv.h @@ -167,7 +167,7 @@ int gettimeofday(struct timeval *__p, void *__t); #include "libssh/callbacks.h" /* some constants */ -#ifndef MAX_PACKAT_LEN +#ifndef MAX_PACKET_LEN #define MAX_PACKET_LEN 262144 #endif #ifndef ERROR_BUFFERLEN -- cgit v1.2.3