<div dir="ltr">This was invisible before because we were calling xopen(), which<br>always passes mode 0 to open(). Now we're calling open() directly,<br>bionic's _FORTIFY_SOURCE spots this.<br><br>Rather than create with 0600 and then chmod() later as the code<br>used to do, move the stat() before the creation so we can supply<br>the final permissions from the beginning.<br><br>Also rewrite the default permissions in octal, in keeping with<br>toybox style.<br>---<br> toys/pending/vi.c | 6 +++---<br> 1 file changed, 3 insertions(+), 3 deletions(-)<br><br></div>