From 580d9a3962eceb957b4d0530aefefd808777e8e1 Mon Sep 17 00:00:00 2001 From: Ramprasad N Date: Mon, 4 Nov 2019 16:12:43 +0530 Subject: [PATCH] kmscube: Add : argument for connector support This is a bug fix patch to support connector id as argument. Earlier this was working but after the commit 456cabc661caac5c60729751d45efd668faa8e97 this is failing. Signed-off-by: Ramprasad N --- kmscube.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmscube.c b/kmscube.c index d7ad183..df2731d 100644 --- a/kmscube.c +++ b/kmscube.c @@ -863,7 +863,7 @@ int main(int argc, char *argv[]) signal(SIGINT, kms_signalhandler); signal(SIGTERM, kms_signalhandler); - while ((opt = getopt(argc, argv, "ahcd:n:")) != -1) { + while ((opt = getopt(argc, argv, "ahc:d:n:")) != -1) { switch(opt) { case 'a': all_display = 1; -- 2.26.2