diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2019-03-11 11:25:49 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2019-03-11 11:25:49 +0000 |
commit | a8539fa8a395f57029c597b2b61ba3099e1f7f04 (patch) | |
tree | 1e1807fd73c36e14074070376412daa04af3c37c /sbin/ifconfig | |
parent | b1c5478dfbc49359a09c41c6c4f7bf861808ed8f (diff) |
remove an extra ; on a line
no functional change
Diffstat (limited to 'sbin/ifconfig')
-rw-r--r-- | sbin/ifconfig/ifconfig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ifconfig/ifconfig.c b/sbin/ifconfig/ifconfig.c index 17da7424b0b..05a74f33eda 100644 --- a/sbin/ifconfig/ifconfig.c +++ b/sbin/ifconfig/ifconfig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ifconfig.c,v 1.396 2019/02/26 03:57:55 dlg Exp $ */ +/* $OpenBSD: ifconfig.c,v 1.397 2019/03/11 11:25:48 dlg Exp $ */ /* $NetBSD: ifconfig.c,v 1.40 1997/10/01 02:19:43 enami Exp $ */ /* @@ -3986,7 +3986,7 @@ setpwe3neighbor(const char *label, const char *neighbor) { struct if_laddrreq req; struct addrinfo hints, *res; - struct sockaddr_mpls *smpls = (struct sockaddr_mpls *)&req.dstaddr;; + struct sockaddr_mpls *smpls = (struct sockaddr_mpls *)&req.dstaddr; const char *errstr; int error; |