oiteam team mailing list archive
-
oiteam team
-
Mailing list archive
-
Message #00147
[Merge] lp:~watchmaker/multi-seat-xephyr/fixes into lp:multi-seat-xephyr
Daniel J Blueman has proposed merging lp:~watchmaker/multi-seat-xephyr/fixes into lp:multi-seat-xephyr.
Requested reviews:
Orientadores de Informática (oiteam)
For more details, see:
https://code.launchpad.net/~watchmaker/multi-seat-xephyr/fixes/+merge/209713
Drop options passed by lightdm 1.8.2 which should be ignored.
--
https://code.launchpad.net/~watchmaker/multi-seat-xephyr/fixes/+merge/209713
Your team Orientadores de Informática is requested to review the proposed merge of lp:~watchmaker/multi-seat-xephyr/fixes into lp:multi-seat-xephyr.
=== modified file 'multi-seat-xephyr.c'
--- multi-seat-xephyr.c 2014-02-27 13:17:30 +0000
+++ multi-seat-xephyr.c 2014-03-06 15:42:25 +0000
@@ -275,6 +275,11 @@
case 'd':
display = optarg;
break;
+
+ /* Ignored options */
+ case 'x':
+ case 'y':
+ break;
case 'a':
case 'D':
case 'c':
@@ -420,6 +425,10 @@
{"screen", required_argument, NULL, 'g'},
{"query", required_argument, NULL, 'q'},
{"nolisten", required_argument, NULL, 'N'},
+
+ /* Options that are dropped */
+ {"novtswitch", no_argument, NULL, 'x'},
+ {"sharevts", no_argument, NULL, 'y'},
{0, 0, 0, 0}
};
Follow ups