Added permission flags for created bb cmdfile

This commit is contained in:
Bruce Hill 2019-05-31 00:25:32 -07:00
parent 73b0f6efb6
commit f78a4d591d

2
bb.c
View File

@ -1387,7 +1387,7 @@ int main(int argc, char *argv[])
initial_path = ".";
goto has_initial_path;
}
cmdfd = open(parent_bbcmd, O_RDWR | O_APPEND);
cmdfd = open(parent_bbcmd, O_WRONLY | O_APPEND | O_CREAT, 0644);
if (cmdfd == -1) err("Couldn't open cmdfile: '%s'\n", parent_bbcmd);
}