You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
freifunkist-firmware/tools/kernel2minor/patches/120-fix_create_mode.patch

11 lines
312 B

--- a/kernel2minor.c
+++ b/kernel2minor.c
@@ -622,7 +622,7 @@ int main(int argc, char *argv[]){
perror("Can't open kernel file");
exit(-1);
}
- r = creat(res_file, 0);
+ r = open(res_file, O_CREAT | O_TRUNC | O_WRONLY, 0644);
if(r <= 0){
perror("Can't create result file");
close(k);