diff options
author | 2008-05-08 07:10:51 +0000 | |
---|---|---|
committer | 2008-05-08 07:10:51 +0000 | |
commit | 3780bb3641f7a353fed8726942bb690bb8ce8d78 (patch) | |
tree | 3942aee35b0cc65d9358d692c42186db76cd7160 | |
parent | avoid extra malloc/copy/free when receiving data over the net; (diff) | |
download | wireguard-openbsd-3780bb3641f7a353fed8726942bb690bb8ce8d78.tar.xz wireguard-openbsd-3780bb3641f7a353fed8726942bb690bb8ce8d78.zip |
space
-rw-r--r-- | sbin/route/show.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/route/show.c b/sbin/route/show.c index 760e5a62f0f..056679a3913 100644 --- a/sbin/route/show.c +++ b/sbin/route/show.c @@ -1,4 +1,4 @@ -/* $OpenBSD: show.c,v 1.68 2008/05/08 06:13:09 norby Exp $ */ +/* $OpenBSD: show.c,v 1.69 2008/05/08 07:10:51 claudio Exp $ */ /* $NetBSD: show.c,v 1.1 1996/11/15 18:01:41 gwr Exp $ */ /* @@ -200,7 +200,7 @@ p_rttables(int af, u_int tableid) } } -/* +/* * column widths; each followed by one space * width of destination/gateway column * strlen("fe80::aaaa:bbbb:cccc:dddd@gif0") == 30, strlen("/128") == 4 |