diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2018-08-08 15:30:30 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2018-08-08 15:30:30 +0000 |
commit | 37dde2c90416aa084aefb76ea91ccebdcf62fa01 (patch) | |
tree | b86d9146a3a4f4ba34ddacd5fd616ca2945a0b35 /sbin | |
parent | 9b6edf1597ab39590c31dcab56e25591a502bf2b (diff) |
tabs are ok at start of line, but internally space seperation is the norm
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/ifconfig/ifconfig.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/ifconfig/ifconfig.c b/sbin/ifconfig/ifconfig.c index 19b2d1a3b84..1a947ca0135 100644 --- a/sbin/ifconfig/ifconfig.c +++ b/sbin/ifconfig/ifconfig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ifconfig.c,v 1.370 2018/08/06 11:42:18 benno Exp $ */ +/* $OpenBSD: ifconfig.c,v 1.371 2018/08/08 15:30:29 deraadt Exp $ */ /* $NetBSD: ifconfig.c,v 1.40 1997/10/01 02:19:43 enami Exp $ */ /* @@ -2341,10 +2341,10 @@ join_status(void) if (!ja.ja_nodes) return; - fputs("\tjoin:\t", stdout); + fputs("\tjoin: ", stdout); for (i = 0; i < ja.ja_nodes; i++) { if (i > 0) - printf("\t\t"); + printf("\t "); if (jn[i].i_len > IEEE80211_NWID_LEN) jn[i].i_len = IEEE80211_NWID_LEN; print_string(jn[i].i_nwid, jn[i].i_len); |