Hide Forgot
Description of problem: I'm not sure if this is intentional, but unicode_start (and unicode_stop) is not working for ssh connections. Version-Release number of selected component (if applicable): Name : kbd Arch : x86_64 Version : 1.15 Release : 11.fc14 How reproducible: Always. Steps to Reproduce: 1. ssh in (connect through ssh into the server) 2. unicode_start Actual results: unicode_start skipped on /dev/pts/0 Expected results: For root, no output is expected. Additional info: I always work in UTF-8 mode, therefore unicode_start is important to me (shell scripts, man page formatting, etc.). Severity for me is low because patching unicode_start and unicode_stop eliminated the problem. Patches follow: --- unicode_start.asof-20110308-224226 2010-06-24 07:36:25.000000000 -0300 +++ unicode_start 2011-03-08 22:43:45.907999263 -0300 @@ -3,7 +3,7 @@ # 0. Check whether we're on a console TTY="`/usr/bin/tty`" case "$TTY" in - /dev/console|/dev/vc*|/dev/tty[0-9]*) + /dev/console|/dev/pts/*|/dev/vc*|/dev/tty[0-9]*) ;; *) echo "unicode_start skipped on $TTY" >&2 --- unicode_stop.asof-20110308-224417 2010-06-24 07:36:24.000000000 -0300 +++ unicode_stop 2011-03-08 22:44:38.303999484 -0300 @@ -2,7 +2,7 @@ TTY="`/usr/bin/tty`" case "$TTY" in - /dev/console|/dev/vc*|/dev/tty[0-9]*) + /dev/console|/dev/pts/*|/dev/vc*|/dev/tty[0-9]*) ;; *) echo "unicode_stop skipped on $TTY"
For self reference (please ignore): BTM3505
This message is a notice that Fedora 14 is now at end of life. Fedora has stopped maintaining and issuing updates for Fedora 14. It is Fedora's policy to close all bug reports from releases that are no longer maintained. At this time, all open bugs with a Fedora 'version' of '14' have been closed as WONTFIX. (Please note: Our normal process is to give advanced warning of this occurring, but we forgot to do that. A thousand apologies.) Package Maintainer: If you wish for this bug to remain open because you plan to fix it in a currently maintained version, feel free to reopen this bug and simply change the 'version' to a later Fedora version. Bug Reporter: Thank you for reporting this issue and we are sorry that we were unable to fix it before Fedora 14 reached end of life. If you would still like to see this bug fixed and are able to reproduce it against a later version of Fedora, you are encouraged to click on "Clone This Bug" (top right of this page) and open it against that version of Fedora. Although we aim to fix as many bugs as possible during every release's lifetime, sometimes those efforts are overtaken by events. Often a more recent Fedora release includes newer upstream software that fixes bugs or makes them obsolete. The process we are following is described here: http://fedoraproject.org/wiki/BugZappers/HouseKeeping