mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-14 18:29:45 +01:00
fix file creation mode, thanks rtz
SVN-Revision: 20293
This commit is contained in:
parent
029b3f62ab
commit
66dc3ee0c9
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,7 @@ int generate_image(char *kname, char *fsname, char *fname, int EHDR)
|
|||
uchar *bk, *bs;
|
||||
int fkd, ffd, fsd;
|
||||
fkd = open(kname, O_RDONLY);
|
||||
ffd = creat(fname, 0x644);
|
||||
ffd = creat(fname, 0644);
|
||||
if ((fkd < 0) || (ffd < 0))
|
||||
return -1;
|
||||
if (fsname) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue