more fprints

This commit is contained in:
Bandie 2018-03-21 22:52:27 +01:00
parent a6c531e78a
commit 3b55f715ed
Signed by: Bandie
GPG Key ID: C1E133BC65A822DD
1 changed files with 3 additions and 7 deletions

View File

@ -71,7 +71,7 @@ int main(int argc, char *argv[]){
// Signal handling
if(signal(SIGTERM, sig_handler) == SIG_ERR || signal(SIGINT, sig_handler) == SIG_ERR)
printf("ERROR: Can't catch signal!");
fprintf(stderr, "ERROR: Can't catch signal!\n");
while(1){
@ -107,7 +107,7 @@ int main(int argc, char *argv[]){
if(access(VRFFILE, F_OK) == -1){
FILE *f = fopen(VRFFILE, "w");
if(f == NULL){
printf("ERROR opening file");
fprintf(stderr, "ERROR opening file\n");
return 1;
}
fclose(f);
@ -116,14 +116,10 @@ int main(int argc, char *argv[]){
else
// If exit != 0
if(access(VRFFILE, F_OK) != -1) //File exists?
unlink(VRFFILE);
unlink(VRFFILE);
}
sleep(SLEEP);
}
sig_handler(SIGTERM);
return 0;
}