dect
/
linux-2.6
Archived
13
0
Fork 0

tty,vt: fix VT_SETACTIVATE console switch

using VT_SETACTIVATE ioctl for console switch did not work,
since it put wrong param to the set_console function.

Also ioctl returned misleading error, because of the missing
break statement. I wonder anyone has ever used this one :).

Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Jiri Olsa 2011-02-11 15:39:28 +01:00 committed by Greg Kroah-Hartman
parent 42bd7a4f68
commit d637837583
1 changed files with 2 additions and 1 deletions

View File

@ -1010,8 +1010,9 @@ int vt_ioctl(struct tty_struct *tty, struct file * file,
if (ret)
break;
/* Commence switch and lock */
set_console(arg);
set_console(vsa.console);
}
break;
}
/*