summaryrefslogtreecommitdiff
path: root/sbin/route/show.c
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2006-02-01 19:00:23 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2006-02-01 19:00:23 +0000
commitcf3e06b9a1711e64c6c3184b6d9e89b6278ef980 (patch)
treec449fb3aef3cd24269692ca1b987ff2cbc11f1f6 /sbin/route/show.c
parentfe08ef4379308c4446c6b876bc0ac4f192d80d6a (diff)
double semicolon; from Daniel Matic in PR 4929
Diffstat (limited to 'sbin/route/show.c')
-rw-r--r--sbin/route/show.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/route/show.c b/sbin/route/show.c
index a215921b540..0220e7b3dc8 100644
--- a/sbin/route/show.c
+++ b/sbin/route/show.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: show.c,v 1.43 2005/05/27 04:55:27 mcbride Exp $ */
+/* $OpenBSD: show.c,v 1.44 2006/02/01 19:00:22 otto Exp $ */
/* $NetBSD: show.c,v 1.1 1996/11/15 18:01:41 gwr Exp $ */
/*
@@ -292,7 +292,7 @@ p_sockaddr(struct sockaddr *sa, struct sockaddr *mask, int flags, int width)
if ((flags & RTF_HOST) || mask == NULL)
cp = routename(sa);
else
- cp = netname(sa, mask);;
+ cp = netname(sa, mask);
break;
}
if (width < 0)