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 67BD3139324 for ; Thu, 27 Oct 2016 01:23:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 978F1E09FC; Thu, 27 Oct 2016 01:23:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7BB5FE09FC for ; Thu, 27 Oct 2016 01:23:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 531A4341616 for ; Thu, 27 Oct 2016 01:23:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 343FB2EF for ; Thu, 27 Oct 2016 01:23:39 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1477512736.964a3a835eaa914422d5de55cd4151b4e56b544a.robbat2@OpenRC> Subject: [gentoo-commits] proj/netifrc:master commit in: net/ X-VCS-Repository: proj/netifrc X-VCS-Files: net/iproute2.sh X-VCS-Directories: net/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 964a3a835eaa914422d5de55cd4151b4e56b544a X-VCS-Branch: master Date: Thu, 27 Oct 2016 01:23:39 +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: 789e82bb-fda9-447d-9407-e1466193fb17 X-Archives-Hash: 47a5b8546c8b3bfdb3b5cf6b13edc953 commit: 964a3a835eaa914422d5de55cd4151b4e56b544a Author: Robin H. Johnson gentoo org> AuthorDate: Wed Oct 26 20:12:16 2016 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Wed Oct 26 20:12:16 2016 +0000 URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=964a3a83 net/iproute2: fix netmask specifier. X-Gentoo-Bug: 598078 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=598078 Signed-off-by: Robin H. Johnson gentoo.org> net/iproute2.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/iproute2.sh b/net/iproute2.sh index 6efa2e7..32ea5a4 100644 --- a/net/iproute2.sh +++ b/net/iproute2.sh @@ -133,7 +133,7 @@ _add_address() eerror "Too many netmasks: $raw_address netmask $1" return 1 fi - netmask="/$(_netmask2cidr "$1")" + netmask="$(_netmask2cidr "$1")" shift ;; broadcast|brd|br*) broadcast="$1" ; shift ;;