Merge pull request #501 from kiwix/fix_option_parsing

Add missing break in the switch case.
pull/497/head
Kelson 5 years ago committed by GitHub
commit 43b5be179a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -204,6 +204,7 @@ int main(int argc, char** argv)
break;
case 'T':
trustlibrary = false;
break;
case 'p':
serverPort = atoi(optarg);
break;

Loading…
Cancel
Save