Fixed permissions of eventually created output file

This commit is contained in:
Thomas Schmitt 2006-10-15 14:19:21 +00:00
parent e423bda96f
commit 1851f3f82a
1 changed files with 2 additions and 1 deletions

View File

@ -89,7 +89,8 @@ help:;
if(ret<=0)
exit(4);
if(strcmp(out_path,"-")!=0) {
out_fd= open(out_path, O_WRONLY|O_CREAT|O_TRUNC);
out_fd= open(out_path, O_WRONLY | O_CREAT | O_TRUNC,
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
if(out_fd == -1) {
fprintf(stderr, "Cannot open file: %s\n", out_path);
fprintf(stderr, "Error reported: '%s' (%d)\n",strerror(errno), errno);