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 495C61388BF for ; Fri, 8 Jan 2016 21:50:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E4E421C00A; Fri, 8 Jan 2016 21:50:27 +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 B354621C003 for ; Fri, 8 Jan 2016 21:50:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EDBB534096F for ; Fri, 8 Jan 2016 21:50:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86306D06 for ; Fri, 8 Jan 2016 21:50:23 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1452277753.b82579ced667244764c67d9fbe622695c3e9fe61.mjo@gentoo> Subject: [gentoo-commits] proj/eselect-php:master commit in: src/ X-VCS-Repository: proj/eselect-php X-VCS-Files: src/php.eselect.in X-VCS-Directories: src/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: b82579ced667244764c67d9fbe622695c3e9fe61 X-VCS-Branch: master Date: Fri, 8 Jan 2016 21:50:23 +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: b5e82ee5-e702-4208-894b-c06a804e5952 X-Archives-Hash: d8ff3ad4386c54c40b7a39691568e3b3 commit: b82579ced667244764c67d9fbe622695c3e9fe61 Author: Michael Orlitzky gentoo org> AuthorDate: Fri Jan 8 18:29:13 2016 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Fri Jan 8 18:29:13 2016 +0000 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=b82579ce Remove unnecessary quoting. src/php.eselect.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/php.eselect.in b/src/php.eselect.in index 9f5ee1a..2e9ec8d 100644 --- a/src/php.eselect.in +++ b/src/php.eselect.in @@ -422,19 +422,19 @@ set_apache2() { } set_cli() { - set_sapi "cli" "${1}" + set_sapi cli "${1}" } set_cgi() { - set_sapi "cgi" "${1}" + set_sapi cgi "${1}" } set_phpdbg() { - set_sapi "dbg" "${1}" + set_sapi dbg "${1}" } set_fpm() { - set_sapi "fpm" "${1}" + set_sapi fpm "${1}" echo "Please restart php-fpm for the changes to take effect." }