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; break;
case 'T': case 'T':
trustlibrary = false; trustlibrary = false;
break;
case 'p': case 'p':
serverPort = atoi(optarg); serverPort = atoi(optarg);
break; break;

Loading…
Cancel
Save