Browse Source
Merge pull request #80 from alfunx/fix-string-options
Fix option parsing to use correct getopt_long
master
Cassandra
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
6 deletions
-
i3lock.c
|
|
@ -1375,16 +1375,16 @@ int main(int argc, char *argv[]) { |
|
|
|
strcpy(date_format,optarg); |
|
|
|
break; |
|
|
|
case 512: |
|
|
|
// if layout is NULL, do nothing
|
|
|
|
// if not NULL, attempt to display stuff
|
|
|
|
// need to code some sane defaults for it
|
|
|
|
keylayout_mode = atoi(optarg); |
|
|
|
verif_text = optarg; |
|
|
|
break; |
|
|
|
case 513: |
|
|
|
verif_text = optarg; |
|
|
|
wrong_text = optarg; |
|
|
|
break; |
|
|
|
case 514: |
|
|
|
wrong_text = optarg; |
|
|
|
// if layout is NULL, do nothing
|
|
|
|
// if not NULL, attempt to display stuff
|
|
|
|
// need to code some sane defaults for it
|
|
|
|
keylayout_mode = atoi(optarg); |
|
|
|
break; |
|
|
|
case 515: |
|
|
|
noinput_text = optarg; |
|
|
|