From: Yang Tse Date: Fri, 11 Jul 2008 18:42:30 +0000 (+0000) Subject: Added missing multiple header inclusion prevention definition X-Git-Tag: upstream/7.37.1~7648 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3452c8d693786e43205e7e1c91c5f05e0454185c;p=platform%2Fupstream%2Fcurl.git Added missing multiple header inclusion prevention definition --- diff --git a/CHANGES b/CHANGES index a9bc57c..3af3357 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,10 @@ Changelog +Yang Tse (11 Jul 2008) +- Added missing multiple header inclusion prevention definition for header + file content_encoding.h + Daniel Fandrich (11 Jul 2008) - Fixed test 553 to pass the torture test. diff --git a/lib/content_encoding.h b/lib/content_encoding.h index e654318..aa51420 100644 --- a/lib/content_encoding.h +++ b/lib/content_encoding.h @@ -1,3 +1,5 @@ +#ifndef __CURL_CONTENT_ENCODING_H +#define __CURL_CONTENT_ENCODING_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | @@ -5,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2007, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2008, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -39,3 +41,5 @@ CURLcode Curl_unencode_gzip_write(struct connectdata *conn, struct SingleRequest *k, ssize_t nread); + +#endif