aboutsummaryrefslogtreecommitdiffstats
path: root/meta-ivi/recipes-graphics/wayland/weston/make-weston-launch-exit-for-unrecognized-option.patch
blob: 25c868311cb8a79f973ea802170368fb55e7fb74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
From e8b615250f700f7854b423aaaf0a0aeea92c05a9 Mon Sep 17 00:00:00 2001
From: Tom Hochstein <tom.hochstein@nxp.com>
Date: Sat, 7 May 2016 08:51:58 -0300
Subject: [PATCH] weston-launch: Handle invalid command line options
Organization: O.S. Systems Software LTDA.

Exit the program if an unrecognized command line option is found.

Upstream-Status: Submitted

Signed-off-by; Tom Hochstein <tom.hochstein@nxp.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 src/weston-launch.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/weston-launch.c b/src/weston-launch.c
index b8dfb17..9987d8e 100644
--- a/src/weston-launch.c
+++ b/src/weston-launch.c
@@ -703,6 +703,8 @@ main(int argc, char *argv[])
 		case 'h':
 			help("weston-launch");
 			exit(EXIT_FAILURE);
+		default:
+			exit(EXIT_FAILURE);
 		}
 	}
 
-- 
2.8.2