From: Daniel Stenberg Date: Tue, 20 Mar 2018 13:28:38 +0000 (+0100) Subject: vauth/ntlm.h: fix the #ifdef header guard X-Git-Tag: curl-7_60_0~154 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d7f0d2b8235d4988fd0ee044ce37f697a842ffa5;p=thirdparty%2Fcurl.git vauth/ntlm.h: fix the #ifdef header guard Detected by lgtm.com --- diff --git a/lib/vauth/ntlm.h b/lib/vauth/ntlm.h index f906a3c7a7..1136b0f8d3 100644 --- a/lib/vauth/ntlm.h +++ b/lib/vauth/ntlm.h @@ -1,5 +1,5 @@ -#ifndef HEADER_CURL_NTLM_H -#define HEADER_CURL_NTLM_H +#ifndef HEADER_VAUTH_NTLM_H +#define HEADER_VAUTH_NTLM_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2016, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2018, 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 @@ -140,4 +140,4 @@ #endif /* USE_NTLM */ -#endif /* HEADER_CURL_NTLM_H */ +#endif /* HEADER_VAUTH_NTLM_H */