diff --git a/ChangeLog b/ChangeLog index 5dac860fa..32f82369d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -43,6 +43,12 @@ - djm@cvs.openbsd.org 2010/09/08 03:54:36 [authfile.c] typo + - deraadt@cvs.openbsd.org 2010/09/08 04:13:31 + [compress.c] + work around name-space collisions some buggy compilers (looking at you + gcc, at least in earlier versions, but this does not forgive your current + transgressions) seen between zlib and openssl + ok djm 20100831 - OpenBSD CVS Sync diff --git a/compress.c b/compress.c index c058d2224..24778e524 100644 --- a/compress.c +++ b/compress.c @@ -1,4 +1,4 @@ -/* $OpenBSD: compress.c,v 1.25 2006/08/06 01:13:32 stevesk Exp $ */ +/* $OpenBSD: compress.c,v 1.26 2010/09/08 04:13:31 deraadt Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -17,12 +17,13 @@ #include #include -#include #include "log.h" #include "buffer.h" #include "compress.h" +#include + z_stream incoming_stream; z_stream outgoing_stream; static int compress_init_send_called = 0;