diff options
author | des <des@FreeBSD.org> | 2008-09-01 14:15:57 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2008-09-01 14:15:57 +0000 |
commit | f50b650b5713b613ceda15e42eafe1755ae6e31e (patch) | |
tree | 370c3810af268c0f8e03e3b750878e41054109ac /crypto | |
parent | ffc7e2eee2f521622d72265d5321dd5b4d460284 (diff) | |
download | FreeBSD-src-f50b650b5713b613ceda15e42eafe1755ae6e31e.zip FreeBSD-src-f50b650b5713b613ceda15e42eafe1755ae6e31e.tar.gz |
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.
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssh/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |