main checks for error returns
If parse_config or preserve_static_entries returns an error, main will report it and close with an error.stable
parent
9b45bc2382
commit
4766abd773
10
src/rhosts.c
10
src/rhosts.c
|
|
@ -17,8 +17,16 @@ int main(int argc, char *argv[]){
|
||||||
rc = openfile(&downloadfile, "w+", TMPDOWNLOADLOCATION);
|
rc = openfile(&downloadfile, "w+", TMPDOWNLOADLOCATION);
|
||||||
if (rc != 0){return rc;}
|
if (rc != 0){return rc;}
|
||||||
|
|
||||||
parse_config(&entries);
|
rc = parse_config(&entries);
|
||||||
|
if (rc != 0){
|
||||||
|
printf("%d - parse_config failed",rc);
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
rc = preserve_static_entries();
|
rc = preserve_static_entries();
|
||||||
|
if (rc != 0){
|
||||||
|
printf("%d - preserve_static_entries failed",rc);
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Closing files before exiting
|
// Closing files before exiting
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue