From patchwork Fri Feb 24 14:27:44 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff Layton X-Patchwork-Id: 9590451 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 1DCAE601AE for ; Fri, 24 Feb 2017 14:28:18 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1DD1F28701 for ; Fri, 24 Feb 2017 14:28:18 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 129A4287A4; Fri, 24 Feb 2017 14:28:18 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5AF5828701 for ; Fri, 24 Feb 2017 14:28:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751297AbdBXO2Q (ORCPT ); Fri, 24 Feb 2017 09:28:16 -0500 Received: from hr2.samba.org ([144.76.82.148]:47287 "EHLO hr2.samba.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751208AbdBXO2Q (ORCPT ); Fri, 24 Feb 2017 09:28:16 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=samba.org; s=42627210; h=Message-Id:Date:Cc:To:From; bh=YaAyYdLEGDypzNyzG9OmJxyqVhSIkfkkqvUvdvVJ3yg=; b=Law5rKqMarmHWSgYOgxWLiEThN dmYWugiBS7Oet6ZazxPICr6rlPBtrbyagII49Wu974PDeqEIHy/OD6NiDMb0NyVGp2zwyCq6Pxy2o tx5PElpxiEPiryJqLD936bj3v3NblvEi0OvodR69GpSGyuYqVnEGiV5Z9az/hl8DwH5k=; Received: from [127.0.0.2] (localhost [127.0.0.1]) by hr2.samba.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim) id 1chGr0-0000FM-0i; Fri, 24 Feb 2017 14:28:14 +0000 From: Jeff Layton To: linux-cifs@vger.kernel.org Cc: cwseys@physics.wisc.edu, ssorce@redhat.com, samba-technical@lists.samba.org Subject: [cifs-utils PATCH 2/8] spengo.c/asn1.c: remove need for replace.h Date: Fri, 24 Feb 2017 09:27:44 -0500 Message-Id: <20170224142750.4151-3-jlayton@samba.org> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20170224142750.4151-1-jlayton@samba.org> References: <20170224142750.4151-1-jlayton@samba.org> Sender: linux-cifs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-cifs@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Just need stdbool.h instead. Signed-off-by: Jeff Layton --- asn1.c | 2 +- spnego.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/asn1.c b/asn1.c index 4c0e48037f14..dd96d2c0e595 100644 --- a/asn1.c +++ b/asn1.c @@ -20,8 +20,8 @@ #include #include #include +#include -#include "replace.h" #include "data_blob.h" #include "asn1.h" diff --git a/spnego.c b/spnego.c index 7f32d7d2efa9..e483e6e1c526 100644 --- a/spnego.c +++ b/spnego.c @@ -21,8 +21,8 @@ #include #include +#include -#include "replace.h" #include "data_blob.h" #include "asn1.h" #include "spnego.h"