From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B8E9A13877A for ; Sat, 21 Jun 2014 00:44:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A6590E08CE; Sat, 21 Jun 2014 00:44:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 34605E08CE for ; Sat, 21 Jun 2014 00:44:50 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6077F33FF6F for ; Sat, 21 Jun 2014 00:44:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 19E7C18B37 for ; Sat, 21 Jun 2014 00:44:48 +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: <1403311147.094bc17cb0ad75da189ebf1a8242a378928a1eef.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: sh/ X-VCS-Repository: proj/openrc X-VCS-Files: sh/tmpfiles.sh.in X-VCS-Directories: sh/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 094bc17cb0ad75da189ebf1a8242a378928a1eef X-VCS-Branch: master Date: Sat, 21 Jun 2014 00:44:48 +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: deef0474-0c4b-433e-b55c-fd753f2095b7 X-Archives-Hash: e0f6eedba23dceed6bbe148ea069e50e commit: 094bc17cb0ad75da189ebf1a8242a378928a1eef Author: William Hubbs gmail com> AuthorDate: Sat Jun 21 00:39:07 2014 +0000 Commit: William Hubbs gentoo org> CommitDate: Sat Jun 21 00:39:07 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=094bc17c tmpfiles.sh: fix comment processing If you happened to format a comment with no white space after the '#', it was not being processed. Reported-by: consus gmx.com X-Gentoo-Bug: 511804 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=511804 --- sh/tmpfiles.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sh/tmpfiles.sh.in b/sh/tmpfiles.sh.in index 6d4c614..66612fc 100755 --- a/sh/tmpfiles.sh.in +++ b/sh/tmpfiles.sh.in @@ -304,7 +304,7 @@ for FILE in $tmpfiles_d ; do # whine about invalid entries case $cmd in f|F|w|d|D|p|L|c|b|x|X|r|R|z|Z) ;; - \#) continue ;; + \#*) continue ;; *) warninvalid ; continue ;; esac