Date: Thu, 14 Oct 2010 02:19:53 +0000 (UTC) From: "David E. O'Brien" <obrien@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org Subject: svn commit: r213826 - stable/7/usr.bin/ruptime Message-ID: <201010140219.o9E2JrTL009444@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: obrien Date: Thu Oct 14 02:19:53 2010 New Revision: 213826 URL: http://svn.freebsd.org/changeset/base/213826 Log: MFC r212771: Increase the hostname display width to >12 characters. Modified: stable/7/usr.bin/ruptime/ruptime.c Directory Properties: stable/7/usr.bin/ruptime/ (props changed) Modified: stable/7/usr.bin/ruptime/ruptime.c ============================================================================== --- stable/7/usr.bin/ruptime/ruptime.c Thu Oct 14 02:10:49 2010 (r213825) +++ stable/7/usr.bin/ruptime/ruptime.c Thu Oct 14 02:19:53 2010 (r213826) @@ -244,12 +244,12 @@ ruptime(const char *host, int aflg, int for (i = 0; i < (int)nhosts; i++) { hsp = &hs[i]; if (ISDOWN(hsp)) { - (void)printf("%-12.12s%s\n", hsp->hs_wd->wd_hostname, + (void)printf("%-25.25s%s\n", hsp->hs_wd->wd_hostname, interval(now - hsp->hs_wd->wd_recvtime, "down")); continue; } (void)printf( - "%-12.12s%s, %4d user%s load %*.2f, %*.2f, %*.2f\n", + "%-25.25s%s, %4d user%s load %*.2f, %*.2f, %*.2f\n", hsp->hs_wd->wd_hostname, interval((time_t)hsp->hs_wd->wd_sendtime - (time_t)hsp->hs_wd->wd_boottime, " up"),
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201010140219.o9E2JrTL009444>