summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorflorian <florian@openbsd.org>2014-04-18 17:01:47 +0000
committerflorian <florian@openbsd.org>2014-04-18 17:01:47 +0000
commite77db8885da0b6f419d574916860e93c4f98c1e4 (patch)
treebf0e693ddee70d98ae3880f052e5aec54212ec35
parentMove ident / perturb initialisation up, this is AF independent. (diff)
downloadwireguard-openbsd-e77db8885da0b6f419d574916860e93c4f98c1e4.tar.xz
wireguard-openbsd-e77db8885da0b6f419d574916860e93c4f98c1e4.zip
Wrap long lines.
OK lteo@, benno@
-rw-r--r--usr.sbin/traceroute/traceroute.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.sbin/traceroute/traceroute.c b/usr.sbin/traceroute/traceroute.c
index 4f2619d670f..b6382b29a2f 100644
--- a/usr.sbin/traceroute/traceroute.c
+++ b/usr.sbin/traceroute/traceroute.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: traceroute.c,v 1.109 2014/04/18 17:01:06 florian Exp $ */
+/* $OpenBSD: traceroute.c,v 1.110 2014/04/18 17:01:47 florian Exp $ */
/* $NetBSD: traceroute.c,v 1.10 1995/05/21 15:50:45 mycroft Exp $ */
/*-
@@ -373,7 +373,8 @@ main(int argc, char *argv[])
hp = gethostbyname(optarg);
if (hp == 0)
errx(1, "unknown host %s", optarg);
- memcpy(&gateway[lsrr], hp->h_addr, hp->h_length);
+ memcpy(&gateway[lsrr], hp->h_addr,
+ hp->h_length);
}
if (++lsrr == 1)
lsrrlen = 4;
@@ -424,7 +425,8 @@ main(int argc, char *argv[])
if (pent)
proto = pent->p_proto;
else
- errx(1, "proto must be >=1, or a name.");
+ errx(1, "proto must be >=1, or a "
+ "name.");
} else
proto = (int)l;
break;