Start on qwknet support

This commit is contained in:
Andrew Pamment
2018-06-24 10:28:18 +10:00
parent 4b90398cbf
commit ecb1c986f0
12 changed files with 474 additions and 4 deletions

View File

@@ -490,6 +490,12 @@ int main(int argc, char **argv) {
conf.filearea_count = 0;
conf.case_insensitve = 0;
if (argc < 2) {
fprintf(stderr, "Usage: \n ./ticproc config.ini\n");
return -1;
}
if (ini_parse(argv[1], handler, NULL) <0) {
fprintf(stderr, "Unable to load configuration ini (%s)!\n", argv[1]);
exit(-1);