From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH 2/7] inetcalc: do not print the default prefix Date: Tue, 04 Jul 2017 17:46:06 +0200 Message-ID: <1499183171-24236-2-git-send-email-jonatan.schlag@ipfire.org> In-Reply-To: <1499183171-24236-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4618206884695574992==" List-Id: --===============4618206884695574992== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Jonatan Schlag --- src/inetcalc.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/inetcalc.c b/src/inetcalc.c index d08f0f3..da3444e 100644 --- a/src/inetcalc.c +++ b/src/inetcalc.c @@ -245,7 +245,10 @@ static void ip_address_print(const ip_address_t* ip) { if (r) return; - if (ip->prefix >= 0) { + int address_prefix = default_prefix(ip->family); + + // Only print prefix when it is not the default one + if (ip->prefix != address_prefix) { size_t len = strlen(buffer); snprintf(buffer + len, sizeof(buffer) - len, "/%d", ip->prefix); } -- 2.6.3 --===============4618206884695574992==--