From f50b650b5713b613ceda15e42eafe1755ae6e31e Mon Sep 17 00:00:00 2001 From: des Date: Mon, 1 Sep 2008 14:15:57 +0000 Subject: Set SIZEOF_LONG_INT and SIZEOF_LONG_LONG_INT to plausible values. They aren't used for anything, but that's no excuse for being silly. --- crypto/openssh/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto') diff --git a/crypto/openssh/config.h b/crypto/openssh/config.h index f54e5a8..d6d029f 100644 --- a/crypto/openssh/config.h +++ b/crypto/openssh/config.h @@ -1268,10 +1268,10 @@ #define SIZEOF_INT 4 /* The size of `long int', as computed by sizeof. */ -#define SIZEOF_LONG_INT 8 +#define SIZEOF_LONG_INT 4 /* The size of `long long int', as computed by sizeof. */ -#define SIZEOF_LONG_LONG_INT 4 +#define SIZEOF_LONG_LONG_INT 8 /* The size of `short int', as computed by sizeof. */ #define SIZEOF_SHORT_INT 2 -- cgit v1.1