* ps.cc (ttynam): Accommodate new console numbering.

(main): Ditto.
This commit is contained in:
Christopher Faylor 2011-05-29 15:20:10 +00:00
parent 6cd2e18523
commit a4fddeb9f6
2 changed files with 16 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2011-05-29 Christopher Faylor <me.cygwin2011@cgf.cx>
* ps.cc (ttynam): Accommodate new console numbering.
(main): Ditto.
2011-05-03 Corinna Vinschen <corinna@vinschen.de> 2011-05-03 Corinna Vinschen <corinna@vinschen.de>
* locale.cc (print_locale_with_codeset): Align printing of locale names * locale.cc (print_locale_with_codeset): Align printing of locale names

View File

@ -198,12 +198,15 @@ to_time_t (FILETIME *ptr)
static const char * static const char *
ttynam (int ntty) ttynam (int ntty)
{ {
static char buf[5]; static char buf[9];
char buf0[9];
if (ntty < 0) if (ntty < 0)
return " ?"; strcpy (buf0, "?");
if (ntty == TTY_CONSOLE) else if (ntty & 0xffff0000)
return " con"; sprintf (buf0, "cons%d", ntty & 0xff);
sprintf (buf, "%4d", ntty); else
sprintf (buf0, "tty%d", ntty);
sprintf (buf, " %-7s", buf0);
return buf; return buf;
} }