From owner-svn-src-stable-12@freebsd.org  Sun Jan 27 14:03:39 2019
Return-Path: <owner-svn-src-stable-12@freebsd.org>
Delivered-To: svn-src-stable-12@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4248D14AD472;
 Sun, 27 Jan 2019 14:03:39 +0000 (UTC)
 (envelope-from nyan@FreeBSD.org)
Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org
 [IPv6:2610:1c1:1:606c::19:3])
 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
 server-signature RSA-PSS (4096 bits)
 client-signature RSA-PSS (4096 bits) client-digest SHA256)
 (Client CN "mxrelay.nyi.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id DCE936AD68;
 Sun, 27 Jan 2019 14:03:38 +0000 (UTC)
 (envelope-from nyan@FreeBSD.org)
Received: from repo.freebsd.org (repo.freebsd.org
 [IPv6:2610:1c1:1:6068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CE1A69077;
 Sun, 27 Jan 2019 14:03:38 +0000 (UTC)
 (envelope-from nyan@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x0RE3cKO026760;
 Sun, 27 Jan 2019 14:03:38 GMT (envelope-from nyan@FreeBSD.org)
Received: (from nyan@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0RE3cY9026759;
 Sun, 27 Jan 2019 14:03:38 GMT (envelope-from nyan@FreeBSD.org)
Message-Id: <201901271403.x0RE3cY9026759@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: nyan set sender to
 nyan@FreeBSD.org using -f
From: Takahashi Yoshihiro <nyan@FreeBSD.org>
Date: Sun, 27 Jan 2019 14:03:38 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
 svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject: svn commit: r343492 - stable/12/usr.bin/ruptime
X-SVN-Group: stable-12
X-SVN-Commit-Author: nyan
X-SVN-Commit-Paths: stable/12/usr.bin/ruptime
X-SVN-Commit-Revision: 343492
X-SVN-Commit-Repository: base
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Rspamd-Queue-Id: DCE936AD68
X-Spamd-Bar: --
Authentication-Results: mx1.freebsd.org
X-Spamd-Result: default: False [-2.95 / 15.00];
 local_wl_from(0.00)[FreeBSD.org];
 NEURAL_HAM_MEDIUM(-1.00)[-0.998,0];
 NEURAL_HAM_SHORT(-0.95)[-0.951,0];
 NEURAL_HAM_LONG(-1.00)[-0.999,0];
 ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]
X-BeenThere: svn-src-stable-12@freebsd.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: SVN commit messages for only the 12-stable src tree
 <svn-src-stable-12.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-src-stable-12>, 
 <mailto:svn-src-stable-12-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-src-stable-12/>
List-Post: <mailto:svn-src-stable-12@freebsd.org>
List-Help: <mailto:svn-src-stable-12-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-src-stable-12>, 
 <mailto:svn-src-stable-12-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 27 Jan 2019 14:03:39 -0000

Author: nyan
Date: Sun Jan 27 14:03:38 2019
New Revision: 343492
URL: https://svnweb.freebsd.org/changeset/base/343492

Log:
  MFC: r342965
  
    Fix indentation in ruptime command output for hosts in the "down" state.
  
  PR:		234239

Modified:
  stable/12/usr.bin/ruptime/ruptime.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/usr.bin/ruptime/ruptime.c
==============================================================================
--- stable/12/usr.bin/ruptime/ruptime.c	Sun Jan 27 13:58:06 2019	(r343491)
+++ stable/12/usr.bin/ruptime/ruptime.c	Sun Jan 27 14:03:38 2019	(r343492)
@@ -264,7 +264,7 @@ ruptime(const char *host, int aflg, int (*cmp)(const v
 		hsp = &hs[i];
 		wd = &hsp->hs_wd;
 		if (ISDOWN(hsp)) {
-			(void)printf("%-*.*s%s\n",
+			(void)printf("%-*.*s  %s\n",
 			    hostnamewidth, hostnamewidth, wd->wd_hostname,
 			    interval(now - hsp->hs_wd.wd_recvtime, "down"));
 			continue;