summaryrefslogtreecommitdiff
path: root/i3lock.c
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2011-09-25 13:26:51 +0100
committerMichael Stapelberg <michael@stapelberg.de>2011-09-25 13:26:51 +0100
commit5932ee24a72e508875d094f4197d48d12085f872 (patch)
treeee68376c44cdaa3b23753012a854818a1ca19900 /i3lock.c
parentc81f8e82841d587a7b62873a2dd71521562f73c1 (diff)
Throw an error when specifying an invalid pointer argument (-p) (Thanks TrickSTer)
Diffstat (limited to 'i3lock.c')
-rw-r--r--i3lock.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/i3lock.c b/i3lock.c
index 89505a8..3332f83 100644
--- a/i3lock.c
+++ b/i3lock.c
@@ -386,9 +386,10 @@ int main(int argc, char *argv[]) {
case 'p':
if (!strcmp(optarg, "win")) {
curs_choice = CURS_WIN;
- }
- if (!strcmp(optarg, "default")) {
+ } else if (!strcmp(optarg, "default")) {
curs_choice = CURS_DEFAULT;
+ } else {
+ errx(1, "i3lock: Invalid pointer type given. Expected one of \"win\" or \"default\".\n");
}
break;
default: