From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 126305 invoked by alias); 28 Jan 2016 16:00:21 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 126295 invoked by uid 89); 28 Jan 2016 16:00:20 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mail-pf0-f178.google.com Received: from mail-pf0-f178.google.com (HELO mail-pf0-f178.google.com) (209.85.192.178) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Thu, 28 Jan 2016 16:00:18 +0000 Received: by mail-pf0-f178.google.com with SMTP id n128so25408561pfn.3 for ; Thu, 28 Jan 2016 08:00:18 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-type :content-transfer-encoding; bh=DOmYQbxpK1kfy5iLhbKUPW4obrgjxlI6F3PxyhxkglY=; b=it+nfkLRcfApl3imIaN3zamojM60OjttC3ErI2hN5zkFMsugkcWAp6w4skJUd21AyQ 2VMhPKuQ4zF5dgFh+XWC7gxzkB3JBPbWXK7xxJd23zjRxDClvUVHnFwI9SAC+hYsKjh7 Z3C7rcVmB/jBzYEoM59hvtmvGmUwBvqqNWXdA8VxVSyHkNndQdVxXziwfMZh+f8fNNHa v4rvnbub74Gxx/8yD3nmylH/3aBpdJawnOjY8H6tNdLdSe7E8emFjgT1tLMHRygC9Mev kkaUFg46sEjv01VH/1Layduo0nUs23mBoUPhS9HgDuAcC3r95Rp1kGITcGDBjDzd/IAs Rszw== X-Gm-Message-State: AG10YOQlWoVw3r3A1ILC46c8ZUeAGe8MpT3qydbODS/ZNWvNoLacWoeR/bg4jGAriBpxWg== X-Received: by 10.98.9.147 with SMTP id 19mr5628312pfj.163.1453996816504; Thu, 28 Jan 2016 08:00:16 -0800 (PST) Received: from E107787-LIN (gcc1-power7.osuosl.org. [140.211.15.137]) by smtp.gmail.com with ESMTPSA id p87sm17349772pfi.94.2016.01.28.08.00.13 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Thu, 28 Jan 2016 08:00:15 -0800 (PST) From: Yao Qi To: Simon Marchi Cc: Subject: Re: [PATCH] Import strchrnul from gnulib and use it References: <1453928650-30750-1-git-send-email-simon.marchi@ericsson.com> Date: Thu, 28 Jan 2016 16:00:00 -0000 In-Reply-To: <1453928650-30750-1-git-send-email-simon.marchi@ericsson.com> (Simon Marchi's message of "Wed, 27 Jan 2016 16:04:10 -0500") Message-ID: <86r3h1pud0.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2016-01/txt/msg00707.txt.bz2 Simon Marchi writes: > diff --git a/gdb/gnulib/update-gnulib.sh b/gdb/gnulib/update-gnulib.sh > index 5d42f98..07de4c6 100755 > --- a/gdb/gnulib/update-gnulib.sh > +++ b/gdb/gnulib/update-gnulib.sh > @@ -45,6 +45,7 @@ IMPORTED_GNULIB_MODULES=3D"\ > readlink \ > rename \ > signal-h \ > + strchrnul \ > strstr \ > strtok_r \ > sys_stat \ If we have dependent modules, such as rawmemchr, we need to list them here explicitly too. --=20 Yao (=E9=BD=90=E5=B0=A7)