From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Florian Weimer Newsgroups: gmane.comp.lib.glibc.alpha Subject: Re: RFC V2 [1/2] test-in-container Date: Wed, 28 Feb 2018 13:57:39 +0100 Message-ID: <75a0cc5b-f91f-0f21-64ac-e5b61d63c807@redhat.com> References: NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: blaine.gmane.org 1519822545 4612 195.159.176.226 (28 Feb 2018 12:55:45 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Wed, 28 Feb 2018 12:55:45 +0000 (UTC) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 To: DJ Delorie , libc-alpha@sourceware.org Original-X-From: libc-alpha-return-90678-glibc-alpha=m.gmane.org@sourceware.org Wed Feb 28 13:55:41 2018 Return-path: Envelope-to: glibc-alpha@blaine.gmane.org DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:to:references:from:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; q=dns; s=default; b=qE7pGcXfP27el1sD mbEpCYzxC7sJMVIs2axKu8gkzQCNuzBBtOm8b6UcKFxz2F4m1gebrKT/9o+/mC22 aQPvrTSHbi2s7+yPCDv26NguqXiWVTpRE5FoLg8D9S2UwICi28xRjIb/m0+/vzjV akGhClVVf6WUmvxa7z1waj0f/14= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:to:references:from:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; s=default; bh=jN8azatT0NM8RcXDG/kJ4a VfMnw=; b=tvK6TuYIo7TXCjgMANg1exEMvfYMtyMXL148yaH52egPZwy9MQWNB3 pqM4NI+sZF5xA8uQ0ZWoh76RBK4zbOilBUfXJPiYdJUf2WioAuzSbjKIyFtAFegV glISlSbtc/KUdCbQmyxDfiB4seyAiAzYuXy3aXNQhcrUSPMVXon2s= Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Original-Sender: libc-alpha-owner@sourceware.org Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com In-Reply-To: Xref: news.gmane.org gmane.comp.lib.glibc.alpha:83009 Archived-At: Received: from server1.sourceware.org ([209.132.180.131] helo=sourceware.org) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1er1Gm-0000er-CU for glibc-alpha@blaine.gmane.org; Wed, 28 Feb 2018 13:55:40 +0100 Received: (qmail 125652 invoked by alias); 28 Feb 2018 12:57:43 -0000 Received: (qmail 125641 invoked by uid 89); 28 Feb 2018 12:57:42 -0000 On 02/27/2018 09:33 PM, DJ Delorie wrote: > +/* Equivalent of "mkdir -p". */ > + > +static int > +mkdir_p (char *path) This could go into support/, as xmkdirp. But please use a const char * argument and make a copy for truncation purposes. Thanks, Florian