diff options
Diffstat (limited to 'sbin')
| -rw-r--r-- | sbin/reboot/reboot.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/reboot/reboot.c b/sbin/reboot/reboot.c index 9bc866a065ca6..3d9d7f348c86d 100644 --- a/sbin/reboot/reboot.c +++ b/sbin/reboot/reboot.c @@ -119,7 +119,8 @@ main(int argc, char *argv[]) } if (kflag) { - fd = open("/boot/nextboot.conf", O_WRONLY | O_CREAT, 0444); + fd = open("/boot/nextboot.conf", O_WRONLY | O_CREAT | O_TRUNC, + 0444); if (fd > -1) { (void)write(fd, "nextboot_enable=\"YES\"\n", 22); (void)write(fd, "kernel=\"", 8L); |
