svn commit: r265250 - head/contrib/top
Bryan Drewery
bdrewery at FreeBSD.org
Fri May 2 23:32:45 UTC 2014
Author: bdrewery
Date: Fri May 2 23:32:44 2014
New Revision: 265250
URL: http://svnweb.freebsd.org/changeset/base/265250
Log:
- Add a hint for 'u' and 'J' command that '+' displays all.
MFC after: 2 weeks
Modified:
head/contrib/top/top.c
Modified: head/contrib/top/top.c
==============================================================================
--- head/contrib/top/top.c Fri May 2 23:30:39 2014 (r265249)
+++ head/contrib/top/top.c Fri May 2 23:32:44 2014 (r265250)
@@ -1007,7 +1007,7 @@ restart:
case CMD_user:
new_message(MT_standout,
- "Username to show: ");
+ "Username to show (+ for all): ");
if (readline(tempbuf2, sizeof(tempbuf2), No) > 0)
{
if (tempbuf2[0] == '+' &&
@@ -1101,7 +1101,7 @@ restart:
case CMD_jail:
new_message(MT_standout,
- "Jail to show: ");
+ "Jail to show (+ for all): ");
if (readline(tempbuf2, sizeof(tempbuf2), No) > 0)
{
if (tempbuf2[0] == '+' &&
More information about the svn-src-head
mailing list