comparison src/proto.nacl0.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
97 }; 97 };
98 98
99 #ifndef COMBINED_BINARY 99 #ifndef COMBINED_BINARY
100 int main(int argc, char** argv) { 100 int main(int argc, char** argv) {
101 print_header(); 101 print_header();
102 if (qtprocessargs(argc, argv) < 0) return -1; 102 int rc = qtprocessargs(argc, argv);
103 if (rc <= 0) return rc;
103 return qtrun(&qtproto_nacl0); 104 return qtrun(&qtproto_nacl0);
104 } 105 }
105 #endif 106 #endif