rbcfg: Add missing mode to open call
authorHauke Mehrtens <hauke@hauke-m.de>
Sat, 18 Apr 2020 15:44:13 +0000 (17:44 +0200)
committerHauke Mehrtens <hauke@hauke-m.de>
Sat, 18 Apr 2020 19:06:45 +0000 (21:06 +0200)
commit14c59a147cae2db25d3b9bfa54892f34a60231e2
treeb3598c09d77c05c7dfa8ef378677a9c537a0e020
parent70a962ca6f13e82d8d67f5c8ee65064a41f66a9c
rbcfg: Add missing mode to open call

When open() is called with O_CREAT a 3. parameter has to be given with
the file system permissions of the new file.

Not giving this is an error, which results in a compile error with glibc.

This fixes the following compile error with glibc:
----------------------------------------------------------------------
In file included from /include/fcntl.h:329,
                 from main.c:18:
In function 'open',
    inlined from 'rbcfg_update' at main.c:501:7:
/include/bits/fcntl2.h:50:4: error: call to '__open_missing_mode' declared with attribute error: open with O_CREAT or O_TMPFILE in second argument needs 3 arguments
    __open_missing_mode ();
    ^~~~~~~~~~~~~~~~~~~~~~

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
package/boot/rbcfg/Makefile
package/boot/rbcfg/src/main.c