Fix loadkeys -d option (patch by Jaroslav Skarvada)

This commit is contained in:
Vitezslav Crhonek 2011-10-24 13:59:45 +02:00
parent fcc9737a8d
commit 39645ee18e
2 changed files with 28 additions and 1 deletions

View File

@ -0,0 +1,20 @@
diff -up kbd-1.15.3/src/loadkeys.c.orig kbd-1.15.3/src/loadkeys.c
--- kbd-1.15.3/src/loadkeys.c.orig 2011-10-24 13:44:52.222401546 +0200
+++ kbd-1.15.3/src/loadkeys.c 2011-10-24 13:47:52.413389029 +0200
@@ -2958,7 +2958,7 @@ int main(int argc, char *argv[])
close(fd);
}
- for (i = optind; argv[i]; i++) {
+ for (i = optind; argv[i] || optd; i++) {
FILE *f;
char *ev;
@@ -2974,6 +2974,7 @@ int main(int argc, char *argv[])
if (optd) {
/* first read default map - search starts in . */
optd = 0;
+ i--;
if ((f = findfile(DEFMAP, dirpath, suffixes)) == NULL) {
fprintf(stderr, _("Cannot find %s\n"), DEFMAP);
exit(EXIT_FAILURE);

View File

@ -1,6 +1,6 @@
Name: kbd
Version: 1.15.3
Release: 2%{?dist}
Release: 3%{?dist}
Summary: Tools for configuring the console (keyboard, virtual terminals, etc.)
Group: System Environment/Base
@ -26,6 +26,8 @@ Patch4: kbd-1.15-defkeymap.patch
Patch5: kbd-1.15.3-fix-es-translation.patch
# Patch6: add missing dumpkeys option to man page
Patch6: kbd-1.15.3-dumpkeys-man.patch
# Patch7: already accepted by upstream
Patch7: kbd-1.15.3-loadkeys-d.patch
BuildRequires: bison, flex, gettext
Conflicts: util-linux < 2.11r-9
@ -54,6 +56,7 @@ keymaps etc. Please note that %{name}-misc is not helpful without kbd.
%patch4 -p1 -b .defkeymap
%patch5 -p1 -b .fix-es-fixtranslation
%patch6 -p1 -b .dumpkeys-man
%patch7 -p1 -b .loadkeys-d
# 7-bit maps are obsolete; so are non-euro maps
pushd data/keymaps/i386
@ -136,6 +139,10 @@ rm -rf $RPM_BUILD_ROOT
/lib/kbd
%changelog
* Mon Oct 24 2011 Vitezslav Crhonek <vcrhonek@redhat.com> - 1.15.3-3
* Fix loadkeys -d option (patch by Jaroslav Skarvada)
Resolves: #744567
* Tue Aug 23 2011 Vitezlsav Crhonek <vcrhonek@redhat.com> - 1.15.3-2
- Add missing dumpkeys option to man page
Resolves: #732121