comparison src/proto.salty.c @ 61:66d9d80215f0

Fixed -h and -v return status, fixed source file permissions (thanks github.com/rotty)
author Ivo Smits <Ivo@UFO-Net.nl>
date Wed, 04 Jan 2017 21:42:38 +0100
parents 5685fad38195
children 5b9e742bb704
comparison
equal deleted inserted replaced
60:81dfc3046d62 61:66d9d80215f0
462 }; 462 };
463 463
464 #ifndef COMBINED_BINARY 464 #ifndef COMBINED_BINARY
465 int main(int argc, char** argv) { 465 int main(int argc, char** argv) {
466 print_header(); 466 print_header();
467 if (qtprocessargs(argc, argv) < 0) return -1; 467 int rc = qtprocessargs(argc, argv);
468 if (rc <= 0) return rc;
468 return qtrun(&qtproto_salty); 469 return qtrun(&qtproto_salty);
469 } 470 }
470 #endif 471 #endif