Wrong place to close hosts file

pull/5/head
Jacob Windle 2020-01-18 07:43:02 -05:00
parent fea10c2d6e
commit 91c01dd192
1 changed files with 2 additions and 2 deletions

4
main.c
View File

@ -71,14 +71,14 @@ void modifyHostsFile(char *oldhost, char *newhost, int deleteHost) {
// // Seek to 0
fseek(hostsFile, 0, SEEK_SET);
fclose(hostsFile);
// fclose(hostsFile);
// If this failed, write an error message to stderr
ONFAILED(0, (fwrite(newHostsFile, sizeof(char), sizeof(newHostsFile), hostsFile))) {
fprintf(stderr, "Did not write anything!\n");
}
fprintf(stderr, "New hosts file: \n%s\n", newHostsFile);
// fclose(hostsFile);
fclose(hostsFile);
}