[Bug 781836] New: luit is broken
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c0 Summary: luit is broken Classification: openSUSE Product: openSUSE 12.2 Version: Final Platform: i686 OS/Version: openSUSE 12.2 Status: NEW Severity: Normal Priority: P5 - None Component: Basesystem AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: jaanvajakas@hot.ee QAContact: qa-bugs@suse.de Found By: --- Blocker: --- User-Agent: Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.8 (KHTML, like Gecko) Chrome/23.0.1255.0 Safari/537.8 SUSE/23.0.1255.0 It seems that iconv works correctly but luit always thinks that the input is UTF-8 and skips characters which are not UTF-8 (my system locale is LANG=et_EE.UTF-8). Reproducible: Always Steps to Reproduce: 1. Open Konsole and run iconv -t 'ISO 8859-13' <<<'aõäöüb' | luit -c -encoding 'ISO 8859-13' >iso.txt 2. Run echo 'aõäöüb' | luit -c -encoding 'ISO 8859-13' >utf.txt Actual Results: 1. iso.txt contains 3 bytes: "ab" and newline. 2. utf.txt contains 11 bytes: "aõäöüb" (in UTF-8) and newline. Expected Results: 1. iso.txt should contain 11 bytes ("aõäöüb"). 2. utf.txt should contain 19 bytes ("aĆµĆ¤Ć¶Ć¼b"). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c kk zhang <kkzhang@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kkzhang@suse.com AssignedTo|bnc-team-screening@forge.pr |kde-maintainers@suse.de |ovo.novell.com | -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c Christian Trippe <ctrippe@opensuse.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ctrippe@opensuse.org AssignedTo|kde-maintainers@suse.de |sndirsch@suse.com -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c1 Stefan Dirsch <sndirsch@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P5 - None |P3 - Medium Status|NEW |ASSIGNED CC| |vuntz@suse.com Component|Basesystem |X.Org AssignedTo|sndirsch@suse.com |xorg-maintainer-bugs@forge. | |provo.novell.com QAContact|qa-bugs@suse.de |xorg-maintainer-bugs@forge. | |provo.novell.com --- Comment #1 from Stefan Dirsch <sndirsch@suse.com> 2012-10-08 20:06:19 UTC --- Seems to be a regression with our switch from luit 1.1.0 to the luit fork 1.2-20120129 of Thomas E.Dickey. :-( -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c2 --- Comment #2 from Thomas Dickey <dickey@his.com> 2012-10-09 01:15:30 UTC --- It's a problem with the -encoding option. Someone reported it last month, and I've applied a fix which I'll be releasing sometime this week. (The bug is in the ifdef for HAVE_LANGINFO_CODESET in parser.c - it doesn't check if the -encoding option was set). At the moment I've another bug to investigate (which breaks in either flavor of luit). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c3 --- Comment #3 from Stefan Dirsch <sndirsch@suse.com> 2012-10-15 07:57:03 UTC --- Thomas released new version. Date: Sun, 14 Oct 2012 20:49:26 -0400 From: Thomas Dickey <dickey@radix.net> To: Xorg list <xorg@lists.freedesktop.org>, XFree86 list <devel@xfree86.org> Subject: ANN: luit 1.2-20121014 http://invisible-island.net/luit/ http://invisible-island.net/luit/luit.log.html 2012/10/14 - * review/improve no-leaks checking with valgrind. * add null-pointer checks in copyOut in case a non-8bit encoding was used with the iconv configuration. * document environment variables used by luit in its manpage. --> * amend the check using nl_langinfo(CODESET) in 2011/10/30 changes, --> ignoring that section if the -encoding option was given (report by --> Alexios Zavras). * support --datarootdir option in configure script. * updated configure macros: CF_FUNC_GRANTPT add another step to the test-program. CF_FUNC_POLL fix the case where stdin is redirected, e.g., in rpm/dpkg builds (reported in Debian #676461). Also correct return-check, which could have been confused by typing on the keyboard while the check was running. CF_GCC_ATTRIBUTES use AC_DEFINE_UNQUOTED() rather than appending to confdefs.h, since long-ago concern about the ability to pass-through parameterized macros appears to be not a problem, testing with 2.13 and 2.52 CF_GCC_VERSION add workaround for Debian's modification of the version message CF_GCC_WARNINGS add check for clang CF_PATHSEP add message to show the actual value used. CF_PATH_SYNTAX also match (for substitution) variables such as ${includedir} CF_WITH_PATH fix after changes in ncurses to use --datarootdir CF__GRANTPT_BODY add an ifdef'd chunk #5 for testing the 'tty' (rather than 'pty') and moved the important 'pty' chunk before opening the slave device as a simple way of making the test program lose any possible race between parent/child processes in initializing both sides of the pseudoterminal (report by Christian Weisgerber). miscellaneous cleanup based on byacc 20121003. * update config.guess, config.sub -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c4 --- Comment #4 from Thomas Dickey <dickey@his.com> 2012-10-15 08:30:27 UTC --- yes, that's the change I mentioned. I also spent some time studying how to extend the iconv-based configuration, but aside from valgrind-related fixes didn't make progress there. I exercised all locales and encodings to compare the fontenc- and iconv-based flavors. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c5 Stefan Dirsch <sndirsch@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #5 from Stefan Dirsch <sndirsch@suse.com> 2012-10-15 08:35:25 UTC --- Thanks, Thomas! Just updated luit in obs://X11:XOrg and submitrequested for openSUSE:Factory, i.e. it will be fixed with openSUSE > 12.2. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c6 --- Comment #6 from Thomas Dickey <dickey@his.com> 2012-10-15 08:41:49 UTC --- The other bug that I mentioned was in "other" encodings such as GB18030 when the fontenc data file is missing. It seems that Fedora doesn't distribute those in any package, and when missing luit would refer to uninitialized data. (I don't recall how SuSE is packaging luit). My fixes seem to address this. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c7 --- Comment #7 from Stefan Dirsch <sndirsch@suse.com> 2012-10-15 08:55:16 UTC --- Oops. Apparently we currently build luit without fontenc support. [...] configure: WARNING: No libraries found for font-encoding checking for nl_langinfo and CODESET... yes checking for iconv... yes [...] We could change this, but then iconv support gets disabled !?! -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c8 --- Comment #8 from Bernhard Wiedemann <bwiedemann@suse.com> 2012-10-15 11:00:09 CEST --- This is an autogenerated message for OBS integration: This bug (781836) was mentioned in https://build.opensuse.org/request/show/138148 Factory / luit https://build.opensuse.org/request/show/138149 Factory / luit -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c9 --- Comment #9 from Thomas Dickey <dickey@his.com> 2012-10-15 09:04:05 UTC --- You can have either configuration, but not both. The iconv-based configuration will support (I think...) any of the single-byte encodings that are provided by the installed locales. But it does not (yet) handle CJK encodings. I think that is doable, but will take some effort. The reason for having only one is that the original program uses fontenc-related definitions throughout. To handle iconv, I made a facade for that, but there are subtle differences which make it awkward to switch at runtime. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c10 --- Comment #10 from Stefan Dirsch <sndirsch@suse.com> 2012-10-15 10:14:36 UTC --- Hmm. So, which option would you recommend? iconv or fontenc? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c11 --- Comment #11 from Thomas Dickey <dickey@his.com> 2012-10-15 10:49:48 UTC --- It depends: my impression is that SuSE would prefer to support CJK. Packaging fontenc to support that is more work (I think the likely explanation for Fedora omitting the data files is due to ongoing balkanization in xorg, moving the data to a separate area). In my Debian 6.0, the data is in the xfonts-encodings package. The freedesktop file is named encodings-master For a quick resolution of this bug, iconv works - but not for CJK. For my ongoing work, I'm interested in supporting CJK in iconv, but it's not a quick change. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c12 --- Comment #12 from Stefan Dirsch <sndirsch@suse.com> 2012-10-15 14:11:52 UTC --- Ok. Just switched to fontenc support in obs://X11:XOrg and for openSUSE:Factory. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c13 --- Comment #13 from Bernhard Wiedemann <bwiedemann@suse.com> 2012-10-15 17:00:09 CEST --- This is an autogenerated message for OBS integration: This bug (781836) was mentioned in https://build.opensuse.org/request/show/138207 Factory / luit -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c14 Jaan Vajakas <jaanvajakas@hot.ee> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | --- Comment #14 from Jaan Vajakas <jaanvajakas@hot.ee> 2012-10-26 16:58:14 UTC --- It seems that this bug is fixed in openSUSE:Factory but could you also submit a patch to the openSUSE 12.2 Update repository? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c15 --- Comment #15 from Thomas Dickey <dickey@his.com> 2012-10-27 16:41:55 UTC --- Created an attachment (id=511106) --> (http://bugzilla.novell.com/attachment.cgi?id=511106) fix from luit update -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c16 --- Comment #16 from Thomas Dickey <dickey@his.com> 2012-10-27 16:42:46 UTC --- for what it's worth, the change was relatively small -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c17 --- Comment #17 from Jaan Vajakas <jaanvajakas@hot.ee> 2012-11-01 18:12:55 UTC --- Actually the version in openSUSE:Factory still doesn't pass my tests in the bug description. I installed luit 1.2_20121014-1.1-i586 and libfontenc1 1.1.1-3.5-i586 from openSUSE:Factory and the command iconv -t 'ISO 8859-13' <<<'aõäöüb' | luit -c -encoding 'ISO 8859-13' prints "audv|b" which is clearly inferior to "aõäöüb". But luit 1.2_20120129 with the last patch by Thomas works OK (I applied the diff file oops.diff to luit-20120129.tgz from https://build.opensuse.org/package/files?package=luit&project=openSUSE%3A12.2&rev=1, patch gave me some warnings because the diff file seems to be made for an older revision, but it worked). So for me, my problem is solved (thank you, Thomas!). It would indeed be nice to have this updated version in the openSUSE 12.2 Update repository to make it easily available to other users. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c Stefan Dirsch <sndirsch@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |ASSIGNED -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c18 Stefan Dirsch <sndirsch@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO InfoProvider| |jaanvajakas@hot.ee --- Comment #18 from Stefan Dirsch <sndirsch@suse.com> 2012-11-12 13:05:17 UTC --- Hmm. Could you figure out if this issue is related to the switch to libfontenc? Just remove the BuildRequires in specfile. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c19 Jaan Vajakas <jaanvajakas@hot.ee> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED InfoProvider|jaanvajakas@hot.ee | --- Comment #19 from Jaan Vajakas <jaanvajakas@hot.ee> 2012-11-14 11:50:52 UTC --- (In reply to comment #18) I don't understand exactly what you mean. Do you mean changing the BuildRequires in the RPM specfile luit.spec and creating an RPM using rpmbuild? But I understand that that should only change the dependencies of the RPM from the viewpoint of the package manager, not the luit binary itself, so it wouldn't change anything (if I have libfontenc1 already installed on my system)? Anyhow, I have no experience building RPM's, just compiled the sources on my computer using ./configure && make. But the issue indeed seems to be related to the switch to libfontenc: when I downloaded luit-20121014.tar.bz2 from https://build.opensuse.org/package/files?package=luit&project=X11%3AXOrg and ran the commands ./configure && make iconv -t 'ISO 8859-13' <<<'aõäöüb' | ./luit -c -encoding 'ISO 8859-13' then the last line of the output was "audv|b" . When I replaced the first command with ./configure --disable-fontenc --enable-iconv && make then the output was "aõäöüb", as desired. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c20 --- Comment #20 from Stefan Dirsch <sndirsch@suse.com> 2012-11-14 11:59:44 UTC --- (In reply to comment #19)
(In reply to comment #18)
I don't understand exactly what you mean. Do you mean changing the BuildRequires in the RPM specfile luit.spec and creating an RPM using rpmbuild?
No, via "osc build" in the buildservice. Otherwise it wouldn't change anything. The buildservice creates a buildsystem from the scratch, does a chroot into it and builds the package.
But the issue indeed seems to be related to the switch to libfontenc: when I downloaded luit-20121014.tar.bz2 from https://build.opensuse.org/package/files?package=luit&project=X11%3AXOrg and ran the commands
./configure && make iconv -t 'ISO 8859-13' <<<'aõäöüb' | ./luit -c -encoding 'ISO 8859-13'
then the last line of the output was "audv|b" . When I replaced the first command with
./configure --disable-fontenc --enable-iconv && make
then the output was "aõäöüb", as desired.
Ok. So it appears to be related to the switch to libfontenc. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c21 --- Comment #21 from Thomas Dickey <dickey@his.com> 2012-11-14 12:00:49 UTC --- See my comment #6 - The fontenc feature may be missing data files which are needed for this particular encoding. The CJK encodings are noticeable when missing, but fontenc has some 8-bit encodings built-in, but others rely on the data files. The iconv feature when considering only the 8-bit encodings is more complete than fontenc. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c22 --- Comment #22 from Stefan Dirsch <sndirsch@suse.com> 2012-11-14 13:25:59 UTC --- Thomas, are we talking about the encodings files in /usr/share/fonts/encodings? I see iso8859-13.enc.gz there, but luit doesn't try to open it at all. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c23 --- Comment #23 from Thomas Dickey <dickey@his.com> 2013-02-27 01:04:27 UTC --- Based on this and a little more prodding, I spent the time to make luit when configured with iconv (now the default) able to read the ".enc" files. In doing this, I found that the ISO-8859-x encodings and a handful of others are built into the fontenc library. A couple of those have errors (according to iconv). I used iconv to construct the corresponding tables. I also made luit+iconv able to fill in workable character set information for the EUC-encodings (though the ".enc" files have additional data). With the changes, there are -list/-show options to show high-level and details for encodings available via the three categories (iconv, ".enc" files and built-in). So... if I haven't blundered someplace, a simple upgrade to the current version of luit should address the issues we were left with in November. The "old" version can be built, and since I made minimal change outside the new code, I don't think I broke that in case we need a 3-way comparison. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c24 --- Comment #24 from Stefan Dirsch <sndirsch@suse.com> 2013-02-27 08:19:47 UTC --- Sounds good! Thanks a lot! -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c25 Stefan Dirsch <sndirsch@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO InfoProvider| |jaanvajakas@hot.ee --- Comment #25 from Stefan Dirsch <sndirsch@suse.com> 2013-03-04 13:13:17 UTC --- Just updated the luit package in obs://X11:XOrg to 2.0-20130217. Check for RPM changelog entry: - update to version 2.0-20130217 Does this fix the issue? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c26 Stefan Dirsch <sndirsch@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED InfoProvider|jaanvajakas@hot.ee | Resolution| |FIXED --- Comment #26 from Stefan Dirsch <sndirsch@suse.com> 2013-03-04 14:23:08 UTC --- Seems to work for me now. In case you have different results, please feel free to reopen. Thanks! -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=781836 https://bugzilla.novell.com/show_bug.cgi?id=781836#c27 --- Comment #27 from Jaan Vajakas <jaanvajakas@hot.ee> 2013-03-07 11:01:34 UTC --- The 2.0-20130217 version works fine. Thank you! -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com