From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1AE27138334 for ; Tue, 19 Jun 2018 21:34:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8DC1E08E5; Tue, 19 Jun 2018 21:34:32 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A8634E08E5 for ; Tue, 19 Jun 2018 21:34:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BB181335C51 for ; Tue, 19 Jun 2018 21:34:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45F982E3 for ; Tue, 19 Jun 2018 21:34:29 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1529440330.04721ece03b15503aa220f60e7c6159d01ee75e1.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/ X-VCS-Repository: proj/openrc X-VCS-Files: src/rc/start-stop-daemon.c X-VCS-Directories: src/rc/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 04721ece03b15503aa220f60e7c6159d01ee75e1 X-VCS-Branch: master Date: Tue, 19 Jun 2018 21:34:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 53bf568a-9e80-44df-a138-395c086c3de7 X-Archives-Hash: c684a29d6f1e515697c1426d27be60c9 commit: 04721ece03b15503aa220f60e7c6159d01ee75e1 Author: William Hubbs gmail com> AuthorDate: Tue Jun 19 20:32:10 2018 +0000 Commit: William Hubbs gentoo org> CommitDate: Tue Jun 19 20:32:10 2018 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=04721ece start-stop-daemon: fix gcc 7 warnings src/rc/start-stop-daemon.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rc/start-stop-daemon.c b/src/rc/start-stop-daemon.c index fceb3058..a04a00ec 100644 --- a/src/rc/start-stop-daemon.c +++ b/src/rc/start-stop-daemon.c @@ -386,6 +386,7 @@ int main(int argc, char **argv) case 'c': /* --chuid | */ /* DEPRECATED */ ewarn("WARNING: -c/--chuid is deprecated and will be removed in the future, please use -u/--user instead"); + /* falls through */ case 'u': /* --user | */ { p = optarg;