Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 54EE6200D35 for ; Tue, 24 Oct 2017 05:21:03 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 538E2160BF0; Tue, 24 Oct 2017 03:21:03 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id C0B411609E0 for ; Tue, 24 Oct 2017 05:21:02 +0200 (CEST) Received: (qmail 75679 invoked by uid 500); 24 Oct 2017 03:21:01 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 75670 invoked by uid 99); 24 Oct 2017 03:21:01 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Oct 2017 03:21:01 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 0D91A3A009D for ; Tue, 24 Oct 2017 03:20:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1813116 - /httpd/httpd/trunk/os/unix/unixd.c Date: Tue, 24 Oct 2017 03:20:56 -0000 To: cvs@httpd.apache.org From: jailletc36@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20171024032100.0D91A3A009D@svn01-us-west.apache.org> archived-at: Tue, 24 Oct 2017 03:21:03 -0000 Author: jailletc36 Date: Tue Oct 24 03:20:56 2017 New Revision: 1813116 URL: http://svn.apache.org/viewvc?rev=1813116&view=rev Log: Fix compilation failure : unixd.c: In function ‘ap_unixd_mpm_set_signals’: unixd.c:579:5: error: implicit declaration of function ‘apr_signal’; did you mean ‘strsignal’? [-Werror=implicit-function-declaration] apr_signal(SIGPIPE, SIG_IGN); ^~~~~~~~~~ strsignal Not sure where it comes from, maybe related to r1812301. Modified: httpd/httpd/trunk/os/unix/unixd.c Modified: httpd/httpd/trunk/os/unix/unixd.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/os/unix/unixd.c?rev=1813116&r1=1813115&r2=1813116&view=diff ============================================================================== --- httpd/httpd/trunk/os/unix/unixd.c (original) +++ httpd/httpd/trunk/os/unix/unixd.c Tue Oct 24 03:20:56 2017 @@ -24,6 +24,7 @@ #include "os.h" #include "ap_mpm.h" #include "apr_thread_proc.h" +#include "apr_signal.h" #include "apr_strings.h" #include "apr_portable.h" #ifdef HAVE_PWD_H @@ -180,7 +181,7 @@ static apr_status_t ap_unix_create_privi ** we force everything to be APR_PROGRAM, and never ** APR_SHELLCMD */ - if(apr_procattr_cmdtype_set(attr, APR_PROGRAM) != APR_SUCCESS) { + if (apr_procattr_cmdtype_set(attr, APR_PROGRAM) != APR_SUCCESS) { return APR_EGENERAL; }