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